| #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 */ |