1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-11 12:54:15 +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

@ -529,9 +529,9 @@ namespace IDE
}
}
[StdCall,CLink]
[CallingConvention(.Stdcall),CLink]
static extern void IDEHelper_ProgramStart();
[StdCall,CLink]
[CallingConvention(.Stdcall),CLink]
static extern void IDEHelper_ProgramDone();
public this()
@ -12915,7 +12915,7 @@ namespace IDE
}
#if BF_PLATFORM_WINDOWS
[Import("user32.lib"), CLink, StdCall]
[Import("user32.lib"), CLink, CallingConvention(.Stdcall)]
public static extern bool MessageBeep(MessageBeepType type);
#endif
}