Cleanup default calling conventions

This commit is contained in:
galaxyhaxz 2019-04-08 22:25:38 -05:00 committed by Anders Jenbo
commit 4e01e03711
142 changed files with 3861 additions and 3861 deletions

View file

@ -2,7 +2,7 @@
#include "../types.h"
BOOL __cdecl SystemSupported()
BOOL SystemSupported()
{
OSVERSIONINFO VersionInformation;
BOOL ret = FALSE;
@ -17,7 +17,7 @@ BOOL __cdecl SystemSupported()
return ret;
}
BOOL __cdecl RestrictedTest()
BOOL RestrictedTest()
{
FILE *f;
char Buffer[MAX_PATH];
@ -36,7 +36,7 @@ BOOL __cdecl RestrictedTest()
return ret;
}
BOOL __cdecl ReadOnlyTest()
BOOL ReadOnlyTest()
{
char *c;
FILE *f;