diff options
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h index 8eec982cc..0fade55f4 100644 --- a/include/util.h +++ b/include/util.h @@ -198,6 +198,12 @@ char *strlwr(char *a); #define stricmp(a,b) strcasecmp( (a), (b) ) #endif +/*-- w32reg.c --*/ +#ifdef __MINGW32__ +char *read_w32_registry_string( const char *root, + const char *dir, const char *name ); +#endif + /**** other missing stuff ****/ #ifndef HAVE_ATEXIT /* For SunOS */ #define atexit(a) (on_exit((a),0)) |