diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-06-19 11:07:21 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-06-19 11:07:30 +0200 |
| commit | 725316a5386eb713438625220b561bcd3710c8bc (patch) | |
| tree | 3535222fdd3ec0c8b601df98006fa1736e9fb047 /src/include/os.h | |
| parent | cc9ed708379b9b03e7a9b86f040f06f178606aef (diff) | |
| download | box64-725316a5386eb713438625220b561bcd3710c8bc.tar.gz box64-725316a5386eb713438625220b561bcd3710c8bc.zip | |
[DYNACACHE] Introduced DynaCache for ARM64 (disabled by default)
Diffstat (limited to 'src/include/os.h')
| -rw-r--r-- | src/include/os.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/os.h b/src/include/os.h index dc3e2c33..7a6c036c 100644 --- a/src/include/os.h +++ b/src/include/os.h @@ -107,6 +107,7 @@ void* GetEnv(const char* name); // 0 : doesn't exist, 1: does exist. int FileExist(const char* filename, int flags); +int MakeDir(const char* folder); // return 1 for success, 0 else #ifdef _WIN32 #define BOXFILE_BUFSIZE 4096 |