Simple library of INI file parser.

Dependents:   TrainInfoSample WatchSensorMail

Revision:
1:3601c7feb547
Parent:
0:995403221573
Child:
2:4ae80a05f6ea
--- a/IniFile.cpp	Tue Nov 16 16:34:45 2010 +0000
+++ b/IniFile.cpp	Wed Nov 17 16:24:11 2010 +0000
@@ -120,8 +120,7 @@
 	return get(key, (char*)&ret, DTYPE_BOOL);
 }
 
-
-IniFile::Status IniFile::get(IniFile::IniList* inilist){
+IniFile::Status IniFile::get(const IniFile::IniList* inilist){
 	Status ret = S_SUCCESS;
 	for(; inilist->key ; ++inilist){
 		Status sts = get(inilist->key, (char*)inilist->buf, inilist->typelen);