0
|
1 #pragma once
|
|
2
|
|
3
|
|
4
|
|
5 /* 322 */
|
|
6 enum FRAME_TABLE_FLAGS
|
|
7 {
|
|
8 FRAME_TABLE_MORE_FRAMES = 0x1,
|
|
9 FRAME_TABLE_FIRST = 0x4,
|
|
10 };
|
|
11
|
|
12
|
|
13
|
|
14 /* 359 */
|
|
15 #pragma pack(push, 1)
|
703
|
16 struct FrameTableTxtLine //7C
|
0
|
17 {
|
701
|
18 int uPropCount;
|
703
|
19 const char *pProperties[30];
|
0
|
20 };
|
|
21 #pragma pack(pop)
|
|
22
|
|
23
|
703
|
24 FrameTableTxtLine* txt_file_frametable_parser(const char *str_to_parse, FrameTableTxtLine *tokens_table);
|
701
|
25
|
|
26 FrameTableTxtLine *frame_table_txt_parser(const char *pString, FrameTableTxtLine *a2); |