Windows: Moved NativeSysImplementation.java to WindowsSysImplementation.java and moved some native code to java.

This commit is contained in:
Elias Naur 2006-07-15 19:45:36 +00:00
parent 008c59a301
commit d9afe6b784
6 changed files with 32 additions and 133 deletions

View file

@ -57,7 +57,7 @@ public final class Sys {
private static final String VERSION = "1.0beta2";
/** Current version of the JNI library */
static final int JNI_VERSION = 2;
static final int JNI_VERSION = 3;
/** The implementation instance to delegate platform specific behavior to */
private final static SysImplementation implementation;
@ -114,7 +114,7 @@ public final class Sys {
class_name = "org.lwjgl.LinuxSysImplementation";
break;
case LWJGLUtil.PLATFORM_WINDOWS:
class_name = "org.lwjgl.Win32SysImplementation";
class_name = "org.lwjgl.WindowsSysImplementation";
break;
case LWJGLUtil.PLATFORM_MACOSX:
class_name = "org.lwjgl.MacOSXSysImplementation";