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

Revamp Stdcall

This commit is contained in:
LZMPDev 2020-05-25 20:46:28 +08:00
parent 7b4239d08e
commit ad0dab0d4c
58 changed files with 1398 additions and 1398 deletions

View file

@ -20,19 +20,19 @@ namespace IDE.Compiler
AsmOutput_ATT = 0x40,
}
[StdCall, CLink]
[CallingConvention(.Stdcall), CLink]
extern static void BfProject_Delete(void* nativeBfProject);
[StdCall, CLink]
[CallingConvention(.Stdcall), CLink]
extern static void BfProject_ClearDependencies(void* nativeBfProject);
[StdCall, CLink]
[CallingConvention(.Stdcall), CLink]
extern static void BfProject_AddDependency(void* nativeBfProject, void* nativeDepProject);
[StdCall, CLink]
[CallingConvention(.Stdcall), CLink]
extern static void BfProject_SetDisabled(void* nativeBfProject, bool disabled);
[StdCall, CLink]
[CallingConvention(.Stdcall), CLink]
extern static void BfProject_SetOptions(void* nativeBfProject, int32 targetType, char8* startupObject, char8* preprocessorMacros,
int32 optLevel, int32 ltoType, int32 relocType, int32 picLevel, Flags flags);