diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-03-24 04:56:31 +0000 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-03-24 04:56:31 +0000 |
commit | 2c0d39acd0329d3e976bd83d85fcf67388465e67 (patch) | |
tree | 25a472250a6de536da048bdef9a63884cd8cf8d1 /src/os-win32.h | |
parent | 00ad7cdd3d05d09a43bda972c823fdc440feabb9 (diff) |
Add auto VDF installation
Breaks the Linux build because I can't file paths brain I need sleeping
Diffstat (limited to 'src/os-win32.h')
-rw-r--r-- | src/os-win32.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os-win32.h b/src/os-win32.h index c7c0bae..08399dd 100644 --- a/src/os-win32.h +++ b/src/os-win32.h @@ -40,6 +40,8 @@ typedef unsigned short os_char; // ucrt defines __stat64 to _stat64. we want _wstat64 to be the actual function #define _stat64(path, buf) _wstat64(path, buf) #define os_stat _stat64 +#define os_mkdir _wmkdir +#define os_unlink _wunlink #define os_getenv _wgetenv #define os_getcwd _wgetcwd |