diff options
author | louie <lshprung@yahoo.com> | 2020-12-20 14:30:06 -0800 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-12-20 14:30:06 -0800 |
commit | 468126196aba8aa60289393d5c0e5c8b3b2efcfb (patch) | |
tree | f5672b22094c1c7f5b761c2590d33f61911c6cbd /read_cfg.h | |
parent | d5e9b653d91556e500b4659ee6895a117d919c85 (diff) |
Built framework for config auto-generation
Diffstat (limited to 'read_cfg.h')
-rw-r--r-- | read_cfg.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,7 +1,11 @@ #ifndef READ_CFG_H #define READ_CFG_H +#if defined _WIN32 || defined _WIN64 +char *find_config_win(); +#else char *find_config(); +#endif void cfg_interp(); |