Mercurial > mm7
comparison Engine/Tables/FrameTableInc.h @ 2499:68cdef6879a0
engine folder
author | Ritor1 |
---|---|
date | Fri, 19 Sep 2014 02:57:42 +0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2498:92eeeb5200f2 | 2499:68cdef6879a0 |
---|---|
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) | |
16 struct FrameTableTxtLine //7C | |
17 { | |
18 int uPropCount; | |
19 const char *pProperties[30]; | |
20 }; | |
21 #pragma pack(pop) | |
22 | |
23 | |
24 FrameTableTxtLine* txt_file_frametable_parser(const char *str_to_parse, FrameTableTxtLine *tokens_table); | |
25 | |
26 FrameTableTxtLine *frame_table_txt_parser(const char *pString, FrameTableTxtLine *a2); |