implemented CFileMgr (barf)

This commit is contained in:
aap 2019-05-24 19:58:32 +02:00
parent 8384815dad
commit 886633293d
4 changed files with 330 additions and 1 deletions

View file

@ -1,5 +1,6 @@
#include "common.h"
#include <direct.h>
#include <Windows.h>
#include "common.h"
#include "patcher.h"
#include "Renderer.h"
#include "debugmenu_public.h"
@ -36,6 +37,16 @@ mysrand(unsigned int seed)
myrand_seed = seed;
}
// platform stuff
char*
GetUserDirectory(void)
{
static char path[MAX_PATH];
strcpy(path, "userfiles");
mkdir(path);
return path;
}
int (*open_script_orig)(const char *path, const char *mode);
int