forked from dolphin-emu/dolphin
		
	
		
			
	
	
		
			24 lines
		
	
	
		
			462 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			462 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
								 | 
							
								// Copyright 2018 Dolphin Emulator Project
							 | 
						||
| 
								 | 
							
								// Licensed under GPLv2+
							 | 
						||
| 
								 | 
							
								// Refer to the license.txt file included.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#pragma once
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <jni.h>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace IDCache
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								JavaVM* GetJavaVM();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								jclass GetNativeLibraryClass();
							 | 
						||
| 
								 | 
							
								jmethodID GetDisplayAlertMsg();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								jclass GetGameFileClass();
							 | 
						||
| 
								 | 
							
								jfieldID GetGameFilePointer();
							 | 
						||
| 
								 | 
							
								jmethodID GetGameFileConstructor();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								jclass GetGameFileCacheClass();
							 | 
						||
| 
								 | 
							
								jfieldID GetGameFileCachePointer();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}  // namespace IDCache
							 |