Lines Matching refs:IniFile
52 typedef struct IniFile IniFile; typedef
58 IniFile* iniFile_newFromMemory( const char* text, const char* fileName );
63 IniFile* iniFile_newFromFile( const char* filePath);
68 int iniFile_saveToFile( IniFile* f, const char* filePath );
71 void iniFile_free( IniFile* f );
74 int iniFile_getPairCount( IniFile* f );
82 void iniFile_getPair( IniFile* f,
90 const char* iniFile_getValue( IniFile* f, const char* key );
94 char* iniFile_getString( IniFile* f, const char* key );
99 int iniFile_getInteger( IniFile* f, const char* key, int defaultValue );
104 int64_t iniFile_getInt64( IniFile* f, const char* key, int64_t defaultValue );
109 double iniFile_getDouble( IniFile* f, const char* key, double defaultValue );
113 char* iniFile_getString( IniFile* f, const char* key );
119 int iniFile_getBoolean( IniFile* f, const char* key, const char* defaultValue );
127 int64_t iniFile_getDiskSize( IniFile* f, const char* key, const char* defaultValue );