Subversion Repositories spk

Rev

Rev 1 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 cycrow 1
/*
2
  names of sections used in BOB1 and CUT1
3
*/
4
 
5
#ifndef BOB_NAMES_INCLUDED
6
#define BOB_NAMES_INCLUDED
7
 
8
// integer values are in big endian order
9
#define BOB_SECTION_NAME_CUT_BEGIN 0x43555431 // CUT1
10
#define BOB_SECTION_NAME_CUT_END 0x2f435554 // /CU1
11
 
12
#define BOB_SECTION_NAME_INFO_BEGIN 0x494e464f // INFO
13
#define BOB_SECTION_NAME_INFO_END 0x2f494e46 // /INF
14
 
15
#define BOB_SECTION_NAME_PATH_BEGIN 0x50415448 // PATH
16
#define BOB_SECTION_NAME_PATH_END 0x2f504154 // /PAT
17
 
18
#define BOB_SECTION_NAME_NAME_BEGIN 0x4e414d45 // NAME
19
#define BOB_SECTION_NAME_NAME_END 0x2f4e414d // /NAM
20
 
21
#define BOB_SECTION_NAME_STAT_BEGIN 0x53544154 // STAT
22
#define BOB_SECTION_NAME_STAT_END 0x2f535441 // /STA
23
 
24
#define BOB_SECTION_NAME_NOTE_BEGIN 0x4e4f5445	// NOTE
25
#define BOB_SECTION_NAME_NOTE_END	0x2f4e4f54	// /NOT
26
 
27
#define BOB_SECTION_NAME_CONST_BEGIN 0x434f4e53 // CONS
28
#define BOB_SECTION_NAME_CONST_END 0x2f434f4e // /CON
29
 
30
#define BOB_SECTION_NAME_BOB_BEGIN 0x424f4231 // BOB1
31
#define BOB_SECTION_NAME_BOB_END 0x2f424f42 // /BOB
32
 
33
#define BOB_SECTION_NAME_MAT6_BEGIN 0x4d415436 // MAT6
34
 
35
#define BOB_SECTION_NAME_MAT5_BEGIN 0x4d415435 // MAT5
36
 
37
#define BOB_SECTION_NAME_MAT_END 0x2f4d4154 // /MAT
38
 
39
#define BOB_SECTION_NAME_BODY_BEGIN 0x424f4459 // BODY
40
#define BOB_SECTION_NAME_BODY_END 0x2f424f44 // /BOD
41
 
42
#define BOB_SECTION_NAME_POINT_BEGIN 0x504f494e // POIN
43
#define BOB_SECTION_NAME_POINT_END 0x2f504f49 // /POI
44
 
45
#define BOB_SECTION_NAME_PART_BEGIN 0x50415254 // PART
46
#define BOB_SECTION_NAME_PART_END 0x2f504152 // /PAR
47
 
48
#define BOB_SECTION_NAME_BONE_BEGIN 0x424f4e45 // BONE
49
#define BOB_SECTION_NAME_BONE_END 0x2f424f4e // /BON
50
 
51
#define BOB_SECTION_NAME_WEIGHT_BEGIN 0x57454947 // WEIG
52
#define BOB_SECTION_NAME_WEIGHT_END 0x2f574549 // /WEI
53
 
54
#endif // !defined(BOB_NAMES_INCLUDED)