1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Added a bunch more comptime platform file & directory methods

This commit is contained in:
Brian Fiete 2021-12-28 15:49:50 -05:00
parent adf282dfa7
commit af8bd5a813
4 changed files with 449 additions and 9 deletions

View file

@ -324,6 +324,14 @@ enum CeFunctionKind
CeFunctionKind_EmitMethodEntry,
CeFunctionKind_EmitMethodExit,
CeFunctionKind_EmitMixin,
CeFunctionKind_BfpDirectory_Create,
CeFunctionKind_BfpDirectory_Rename,
CeFunctionKind_BfpDirectory_Delete,
CeFunctionKind_BfpDirectory_GetCurrent,
CeFunctionKind_BfpDirectory_SetCurrent,
CeFunctionKind_BfpDirectory_Exists,
CeFunctionKind_BfpDirectory_GetSysDirectory,
CeFunctionKind_BfpFile_Close,
CeFunctionKind_BfpFile_Create,
@ -334,6 +342,28 @@ enum CeFunctionKind
CeFunctionKind_BfpFile_Seek,
CeFunctionKind_BfpFile_Truncate,
CeFunctionKind_BfpFile_Write,
CeFunctionKind_BfpFile_GetTime_LastWrite,
CeFunctionKind_BfpFile_GetAttributes,
CeFunctionKind_BfpFile_SetAttributes,
CeFunctionKind_BfpFile_Copy,
CeFunctionKind_BfpFile_Rename,
CeFunctionKind_BfpFile_Delete,
CeFunctionKind_BfpFile_Exists,
CeFunctionKind_BfpFile_GetTempPath,
CeFunctionKind_BfpFile_GetTempFileName,
CeFunctionKind_BfpFile_GetFullPath,
CeFunctionKind_BfpFile_GetActualPath,
CeFunctionKind_BfpFindFileData_FindFirstFile,
CeFunctionKind_BfpFindFileData_FindNextFile,
CeFunctionKind_BfpFindFileData_GetFileName,
CeFunctionKind_BfpFindFileData_GetTime_LastWrite,
CeFunctionKind_BfpFindFileData_GetTime_Created,
CeFunctionKind_BfpFindFileData_GetTime_Access,
CeFunctionKind_BfpFindFileData_GetFileAttributes,
CeFunctionKind_BfpFindFileData_GetFileSize,
CeFunctionKind_BfpFindFileData_Release,
CeFunctionKind_BfpSpawn_Create,
CeFunctionKind_BfpSpawn_GetStdHandles,
CeFunctionKind_BfpSpawn_Kill,