diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-18 12:11:03 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-18 12:11:03 -0500 |
commit | 44f374480888812456892f59a9f25f475e564819 (patch) | |
tree | 444cc5b5547fca9a0bad720ca8a4c49c14a63092 /base.h | |
parent | 6db2ef3ce69c17f6291b30fcb9278e7d4df53c71 (diff) |
got windows build to partly work
Diffstat (limited to 'base.h')
-rw-r--r-- | base.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,10 @@ #if _WIN32 #include <windows.h> +#include <shlobj.h> +#define PATH_SEPARATOR "\\" +#else +#define PATH_SEPARATOR "/" #endif #include <stdbool.h> |