blob: bb083342875f00f7f4135833db2b1819b922ad7a (
plain)
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
|
#ifndef _included_mslhand_h_
#define _included_mslhand_h_
#ifdef __cplusplus
extern "C" {
#endif
typedef enum MSL_Section
{
MSLS_COMPILEDIN,
MSLS_CHARACTER,
MSLS_ENVIRONMENT,
MSLS_MAXSECTIONS
} MSL_SECTION;
#define MSL_OVERFLOW (-1)
int GetNextMSLEntry(MSL_SECTION, unsigned int num_shapes, int auto_delete);
void FlushMSLSection(MSL_SECTION);
#ifdef __cplusplus
}
#endif
#endif /* !_included_mslhand_h_ */
|