| 678 | } |
| 679 | |
| 680 | void Window_PreInit(void) { |
| 681 | JNIEnv* env; |
| 682 | Java_GetCurrentEnv(env); |
| 683 | Java_RegisterNatives(env, methods); |
| 684 | CacheJavaMethodRefs(env); |
| 685 | |
| 686 | DisplayInfo.CursorVisible = true; |
| 687 | if (!LoadDroidFuncs()) UseFallbackDroidFuncs(); |
| 688 | } |
| 689 | |
| 690 | void Window_Init(void) { |
| 691 | JNIEnv* env; |
nothing calls this directly
no test coverage detected