aboutsummaryrefslogtreecommitdiffstats
path: root/gl4java/utils/glf/GLFEnum.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2001-06-18 23:34:31 +0000
committerSven Gothel <[email protected]>2001-06-18 23:34:31 +0000
commit255908bf19515af5c3770cd304eece10f95b6ba8 (patch)
tree1e9cb3a5efb5380e811fd7f0f7d900fbcc32c5ba /gl4java/utils/glf/GLFEnum.java
parentcc7376ee5616743cdd7b7a5c711f054b32ae8e4e (diff)
2.8.0.0 pre-release cvs only
Diffstat (limited to 'gl4java/utils/glf/GLFEnum.java')
-rwxr-xr-xgl4java/utils/glf/GLFEnum.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/gl4java/utils/glf/GLFEnum.java b/gl4java/utils/glf/GLFEnum.java
new file mode 100755
index 0000000..9a59c4b
--- /dev/null
+++ b/gl4java/utils/glf/GLFEnum.java
@@ -0,0 +1,57 @@
+/* WARNING ! WARNING *** THIS FILE IS GENERATED BY C2J !!!
+
+ DO NOT MAKE ANY CHANGES *** MAKE CHANGES IN THE SKELETON FILES !!!
+*/
+
+
+/**
+ * @(#) GLFEnum.java
+ */
+
+
+package gl4java.utils.glf;
+
+/**
+ * The base interface for GLF enumerates,
+ * which provides you all the C-API style enumerates
+ *
+ * @version 1.00, 23. Mai 2001
+ * @author Sven Goethel
+ */
+public interface GLFEnum
+{
+
+/**
+ * C2J Parser Version 2.2
+ * Jausoft - Sven Goethel Software Development
+ * Reading from file: glf-enum-auto.orig.h . . .
+ * Destination-Class: gl4java_GLFEnum !
+ */
+
+ public static final int GLF_ERROR = - 1;
+ public static final int GLF_OK = 0;
+ public static final int GLF_YES = 1;
+ public static final int GLF_NO = 2;
+ public static final int GLF_CONSOLE_MESSAGES = 10;
+ public static final int GLF_TEXTURING = 11;
+ public static final int GLF_CONTOURING = 12;
+ public static final int GLF_LEFT_UP = 20;
+ public static final int GLF_LEFT_CENTER = 21;
+ public static final int GLF_LEFT_DOWN = 22;
+ public static final int GLF_CENTER_UP = 23;
+ public static final int GLF_CENTER_CENTER = 24;
+ public static final int GLF_CENTER_DOWN = 25;
+ public static final int GLF_RIGHT_UP = 26;
+ public static final int GLF_RIGHT_CENTER = 27;
+ public static final int GLF_RIGHT_DOWN = 28;
+ public static final int GLF_CENTER = 24;
+ public static final int GLF_LEFT = 1;
+ public static final int GLF_RIGHT = 2;
+ public static final int GLF_UP = 3;
+ public static final int GLF_DOWN = 4;
+ public static final int GLF_CONSOLE_CURSOR = 30;
+/* C2J Parser Version 2.2: Java program parsed successfully. */
+
+
+}
+