|
|
| version 1.5, 2011/01/15 19:16:58 | version 1.6, 2012/01/23 04:20:24 |
|---|---|
| Line 31 enum { | Line 31 enum { |
| }; | }; |
| typedef struct { | typedef struct { |
| const char item[10]; | char item[10]; |
| const UINT16 itemtype; | UINT16 itemtype; |
| const void *value; | void *value; |
| const UINT32 arg; | UINT32 arg; |
| } INITBL; | } INITBL; |
| void ini_read(const char *path, const char *title, const INITBL *tbl, UINT count); | void ini_read(const char *path, const char *title, INITBL *tbl, UINT count); |
| void ini_write(const char *path, const char *title, const INITBL *tbl, UINT count, BOOL create); | void ini_write(const char *path, const char *title, INITBL *tbl, UINT count, BOOL create); |
| void initload(void); | void initload(void); |
| void initsave(void); | void initsave(void); |