-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQPBasicTypes.h
41 lines (35 loc) · 1.61 KB
/
QPBasicTypes.h
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
31
32
33
34
35
36
37
38
39
40
41
/*------------------------------------------------------------------------------+
| |
| QP - QSDL Parser |
| |
| (C) 1994-98 Marc Diefenbruch |
| University of Essen, Germany |
| |
+---------------+-------------------+---------------+-------------------+-------+
| Module | File | Created | Project | |
+---------------+-------------------+---------------+-------------------+-------+
| QPBasicTypes | QPBasicTypes.h | 9. Aug 1994 | SCL | |
+------------------------------------------------------------------------------*/
/* Lineal
000000000011111111112222222222333333333344444444445555555555666666666677777777778
012345678901234567890123456789012345678901234567890123456789012345678901234567890
*/
#ifndef _QPBASICTYPES_H_
#define _QPBASICTYPES_H_
/*************************************************************************
* Grundlegenden Datentypen fuer den (Q)SDL-Parser
*************************************************************************/
#define QP_VERSION "1.4.0"
#define QP_DATE "$Date: 1998/01/05 06:31:35 $"
enum QPResult
{
QP_FALSE = 0,
QP_TRUE,
QP_OK,
QP_OUT_OF_MEMORY,
QP_ERROR,
QP_SYNTAX_ERROR,
QP_SEMANTIC_ERROR,
QP_RESULT_MAX
};
#endif