HomeSort by relevance Sort by last modified time
    Searched defs:IniFile (Results 1 - 2 of 2) sorted by null

  /external/qemu/android/utils/
ini.h 22 typedef struct IniFile IniFile;
24 /* creates a new IniFile object from a config file loaded in memory.
28 IniFile* iniFile_newFromMemory( const char* text, const char* fileName );
30 /* creates a new IniFile object from a file path,
33 IniFile* iniFile_newFromFile( const char* filePath);
35 /* try to write an IniFile into a given file.
38 int iniFile_saveToFile( IniFile* f, const char* filePath );
40 /* free an IniFile object */
41 void iniFile_free( IniFile* f )
    [all...]
ini.c 36 struct IniFile {
43 iniFile_free( IniFile* i )
55 static IniFile*
58 IniFile* i;
65 iniFile_addPair( IniFile* i, const char* key, int keyLen,
92 iniFile_getValue( IniFile* i, const char* key )
106 iniFile_getPairCount( IniFile* i )
112 iniFile_getPair( IniFile* i,
168 IniFile*
172 IniFile* ini = iniFile_alloc()
    [all...]

Completed in 18 milliseconds