diff -r bf6cf4dd847a -r f84805e6df03 project_files/frontlib/ini/inihelper.h --- a/project_files/frontlib/ini/inihelper.h Fri Jun 08 19:52:24 2012 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,53 +0,0 @@ -/** - * Some helper functions for working with the iniparser functions - in particular, - * for interoperability with the ini format used by the QtSettings class. - */ - -#ifndef INIHELPER_H_ -#define INIHELPER_H_ - -#include "../iniparser/iniparser.h" -#include - -/** - * Returned buffer must be free()d - */ -char *inihelper_urlencode(const char *inbuf); - -/** - * Returned buffer must be free()d - */ -char *inihelper_urldecode(const char *inbuf); - -/** - * Create a key in the format "sectionName:keyName" - * Returned buffer must be free()d - */ -char *inihelper_createDictKey(const char *sectionName, const char *keyName); - -/** - * Returns an internal buffer, don't modify or free - * Sets error to true if something goes wrong, leaves it unchanged otherwise. - */ -char *inihelper_getstring(dictionary *inifile, bool *error, const char *sectionName, const char *keyName); - -/** - * Returned buffer must be free()d - * Sets error to true if something goes wrong, leaves it unchanged otherwise. - */ -char *inihelper_getstringdup(dictionary *inifile, bool *error, const char *sectionName, const char *keyName); - -/** - * Sets error to true if something goes wrong, leaves it unchanged otherwise. - */ -int inihelper_getint(dictionary *inifile, bool *error, const char *sectionName, const char *keyName); - -/** - * Sets error to true if something goes wrong, leaves it unchanged otherwise. - */ -bool inihelper_getbool(dictionary *inifile, bool *error, const char *sectionName, const char *keyName); - -int inihelper_setstr(dictionary *dict, const char *sectionName, const char *keyName, const char *value); -int inihelper_setint(dictionary *dict, const char *sectionName, const char *keyName, int value); -int inihelper_setbool(dictionary *dict, const char *sectionName, const char *keyName, bool value); -#endif /* INIHELPER_H_ */