1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

DocPrep update

This commit is contained in:
Brian Fiete 2022-03-31 06:57:53 -07:00
parent 84e5a88183
commit bd5c36bd32

View file

@ -42,7 +42,7 @@ namespace DocPrep
static extern char8* BfParser_Prep*/ static extern char8* BfParser_Prep*/
[CallingConvention(.Stdcall), CLink] [CallingConvention(.Stdcall), CLink]
static extern void* BfSystem_CreateProject(void* bfSystem, char8* projectName); static extern void* BfSystem_CreateProject(void* bfSystem, char8* projectName, char8* projectDir);
String mSrcDirPath; String mSrcDirPath;
String mDestDirPath; String mDestDirPath;
@ -53,7 +53,7 @@ namespace DocPrep
this() this()
{ {
mSystem = BfSystem_Create(); mSystem = BfSystem_Create();
mProject = BfSystem_CreateProject(mSystem, "main"); mProject = BfSystem_CreateProject(mSystem, "main", "");
} }
void GenFile(String relFilePath) void GenFile(String relFilePath)