ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Daodan/src/Inifile_Reader.h
Revision: 993
Committed: Sun Apr 6 17:06:02 2014 UTC (11 years, 6 months ago) by alloc
Content type: text/x-chdr
File size: 219 byte(s)
Log Message:
Daodan:
- Fix #74
- Fix #75
- Fix #72

File Contents

# Content
1 #ifndef INIFILE_H
2 #define INIFILE_H
3
4 #include "stdint.h"
5
6 typedef void (*inifile_callback)(char* section, char* name, char* value);
7
8 bool Inifile_Read(const char* filename, inifile_callback callback);
9
10 #endif