|
|
| version 1.6, 2004/03/31 14:02:50 | version 1.8, 2004/05/06 20:37:36 |
|---|---|
| Line 19 enum { | Line 19 enum { |
| }; | }; |
| typedef struct { | typedef struct { |
| BYTE *buffer; | char *buffer; |
| UINT buffers; | UINT buffers; |
| UINT size; | UINT size; |
| UINT flag; | UINT flag; |
| Line 64 typedef struct { | Line 64 typedef struct { |
| UINT32 arg; | UINT32 arg; |
| } PFTBL; | } PFTBL; |
| typedef void (*PFREAD)(const PFTBL *item, const char *string); | |
| typedef char *(*PFWRITE)(const PFTBL *item, char *string, UINT size); | |
| void profile_iniread(const char *path, const char *app, | void profile_iniread(const char *path, const char *app, |
| const PFTBL *tbl, UINT count); | const PFTBL *tbl, UINT count, PFREAD cb); |
| void profile_iniwrite(const char *path, const char *app, | void profile_iniwrite(const char *path, const char *app, |
| const PFTBL *tbl, UINT count); | const PFTBL *tbl, UINT count, PFWRITE cb); |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |