blob: 1241ade02bf597c4b7a8eb1bfdf7c1dc7e1f674f [file] [log] [blame]
#ifndef INSTALL_CONFIG_H
#define INSTALL_CONFIG_H
#ifdef UNICODE
#define readConfigFile readConfigFileW
#define freeConfig freeConfigW
#endif
/* Configuration file reading utilities */
extern int readConfigFile(_TCHAR* program, _TCHAR* arg0, int *nArgs, _TCHAR ***args);
/**
* Free the memory allocated by readConfigFile().
*/
extern void freeConfig(_TCHAR **args);
#endif /* INSTALL_CONFIG_H */