Merge pull request #2246 from lukaspj/update-cinterface

Update CInterface
This commit is contained in:
Areloch 2018-12-09 15:24:29 -06:00 committed by GitHub
commit 644f4071ed
4 changed files with 48 additions and 9 deletions

View file

@ -620,3 +620,8 @@ DefineEngineFunction( getUserHomeDirectory, const char *, (), , "getUserHomeDire
{
return Platform::getUserHomeDirectory();
}
DefineEngineFunction(setMainDotCsDir, void, (const char* path), , "setMainDotCsDir()")
{
Platform::setMainDotCsDir(StringTable->insert(path));
}