mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 20:56:39 +00:00 
			
		
		
		
	android: remove unused file
This commit is contained in:
		
							parent
							
								
									7865ffa1a7
								
							
						
					
					
						commit
						16d2db8492
					
				
					 3 changed files with 0 additions and 43 deletions
				
			
		|  | @ -8,7 +8,6 @@ set(GAME | |||
| ) | ||||
| 
 | ||||
| if (ANDROID) | ||||
|     set(GAME ${GAME} android_commandLine.cpp) | ||||
|     set(GAME ${GAME} android_main.cpp) | ||||
| endif() | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,27 +0,0 @@ | |||
| #include "android_commandLine.h" | ||||
| #include "string.h" | ||||
| 
 | ||||
| const char **argvData; | ||||
| int argcData; | ||||
| 
 | ||||
| extern "C" void releaseArgv(); | ||||
| 
 | ||||
| void releaseArgv() { | ||||
|     delete[] argvData; | ||||
| } | ||||
| 
 | ||||
| JNIEXPORT void JNICALL Java_ui_activity_GameActivity_commandLine(JNIEnv *env, | ||||
|     jobject obj, jint argc, jobjectArray stringArray) { | ||||
|     jboolean iscopy; | ||||
|     argcData = (int) argc; | ||||
|     argvData = new const char *[argcData + 1]; | ||||
|     argvData[0] = "openmw"; | ||||
|     for (int i = 1; i < argcData + 1; i++) { | ||||
|         jstring string = (jstring) (env)->GetObjectArrayElement(stringArray, | ||||
|                 i - 1); | ||||
|         argvData[i] = (env)->GetStringUTFChars(string, &iscopy); | ||||
|         (env)->DeleteLocalRef(string); | ||||
|     } | ||||
|     (env)->DeleteLocalRef(stringArray); | ||||
| } | ||||
| 
 | ||||
|  | @ -1,15 +0,0 @@ | |||
| 
 | ||||
| /* DO NOT EDIT THIS FILE - it is machine generated */ | ||||
| #include <jni.h> | ||||
| #ifndef _Included_ui_activity_GameActivity_commandLine | ||||
| #define _Included_ui_activity_GameActivity_commandLine | ||||
| #ifdef __cplusplus | ||||
| extern "C" { | ||||
| #endif | ||||
| 
 | ||||
| JNIEXPORT void JNICALL Java_ui_activity_GameActivity_commandLine(JNIEnv *env, jobject obj,jint argcData, jobjectArray stringArray); | ||||
| 
 | ||||
| #ifdef __cplusplus | ||||
| } | ||||
| #endif | ||||
| #endif | ||||
		Loading…
	
		Reference in a new issue