Changeset 352


Ignore:
Timestamp:
Jun 13, 2009, 3:44:53 AM (15 years ago)
Author:
rossy
Message:
 
Location:
Daodan/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Daodan/src/inifile.h

    r346 r352  
    99typedef bool (*inifile_callback)(char* section, bool newsection, char* name, char* value);
    1010
    11 bool inifile_read(char* filename, inifile_callback callback);
     11bool inifile_read(const char* filename, inifile_callback callback);
    1212
    1313#endif
  • Daodan/src/inifile_reader.c

    r349 r352  
    2121}
    2222*/
    23 bool inifile_read(char* filename, inifile_callback callback)
     23bool inifile_read(const char* filename, inifile_callback callback)
    2424{
    2525        FILE* fp = fopen(filename, "r");
Note: See TracChangeset for help on using the changeset viewer.