1 /* Hey EMACS -*- linux-c -*- */
2 /* $Id$ */
3 
4 /*  libtifiles - file format library, a part of the TiLP project
5  *  Copyright (C) 1999-2005  Romain Lievin
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software Foundation,
19  *  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #ifndef __TIFILES_DEFSV2__
23 #define __TIFILES_DEFSV2__
24 
25 #include "stdints2.h"
26 
27 #define V200_MAXTYPES 48
28 
29 #define V200_EXPR 0x00
30 #define V200_LIST 0x04
31 #define V200_MAT  0x06
32 #define V200_DATA 0x0A
33 #define V200_TEXT 0x0B
34 #define V200_STR  0x0C
35 #define V200_GDB  0x0D
36 #define V200_FIG  0x0E
37 #define V200_PIC  0x10
38 #define V200_PRGM 0x12
39 #define V200_FUNC 0x13
40 #define V200_MAC  0x14
41 #define V200_CLK  0x18
42 #define V200_RDIR 0x1A		// request
43 #define V200_LDIR 0x1B		// local
44 #define V200_ZIP  0x1C
45 #define V200_BKUP 0x1D
46 #define V200_FDIR 0x1F		// full
47 #define V200_DIR  V200_FDIR	//type
48 #define V200_GETCERT 0x20
49 #define V200_ASM     0x21
50 #define V200_IDLIST  0x22
51 #define V200_AMS     0x23
52 #define V200_APPL    0x24
53 #define V200_CERTIF  0x25
54 #define V200_LICENSE 0x3E
55 
56 #define V200_VNONE 0
57 #define V200_VLOCK 1
58 #define V200_VARCH 3
59 
60 #endif
61