blob: 735d02a85d8e76bcb4d777e13800f070254181b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/**
* C2J Parser Version 3.0
* 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 3.0: Java program parsed successfully. */
|