1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +02:00

Merge pull request #292 from HydrogenC/patch-1

Deprecate [Stdcall]
This commit is contained in:
Brian Fiete 2020-05-28 09:06:41 -07:00 committed by GitHub
commit dfde0c6dda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 1399 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()
@ -12917,7 +12917,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
}