Source code: gl4java/utils/glf/GLFEnum.java
1 /* WARNING ! WARNING *** THIS FILE IS GENERATED BY C2J !!!
2
3 DO NOT MAKE ANY CHANGES *** MAKE CHANGES IN THE SKELETON FILES !!!
4 */
5
6
7 /**
8 * @(#) GLFEnum.java
9 */
10
11
12 package gl4java.utils.glf;
13
14 /**
15 * The base interface for GLF enumerates,
16 * which provides you all the C-API style enumerates
17 *
18 * @version 1.00, 23. Mai 2001
19 * @author Sven Goethel
20 */
21 public interface GLFEnum
22 {
23
24 /**
25 * C2J Parser Version 3.0
26 * Jausoft - Sven Goethel Software Development
27 * Reading from file: glf-enum-auto.orig.h . . .
28 * Destination-Class: gl4java_GLFEnum !
29 */
30
31 public static final int GLF_ERROR = - 1;
32 public static final int GLF_OK = 0;
33 public static final int GLF_YES = 1;
34 public static final int GLF_NO = 2;
35 public static final int GLF_CONSOLE_MESSAGES = 10;
36 public static final int GLF_TEXTURING = 11;
37 public static final int GLF_CONTOURING = 12;
38 public static final int GLF_LEFT_UP = 20;
39 public static final int GLF_LEFT_CENTER = 21;
40 public static final int GLF_LEFT_DOWN = 22;
41 public static final int GLF_CENTER_UP = 23;
42 public static final int GLF_CENTER_CENTER = 24;
43 public static final int GLF_CENTER_DOWN = 25;
44 public static final int GLF_RIGHT_UP = 26;
45 public static final int GLF_RIGHT_CENTER = 27;
46 public static final int GLF_RIGHT_DOWN = 28;
47 public static final int GLF_CENTER = 24;
48 public static final int GLF_LEFT = 1;
49 public static final int GLF_RIGHT = 2;
50 public static final int GLF_UP = 3;
51 public static final int GLF_DOWN = 4;
52 public static final int GLF_CONSOLE_CURSOR = 30;
53 /* C2J Parser Version 3.0: Java program parsed successfully. */
54
55
56 }
57