From 197e729ab045db90a2484ee054a711f0afbceadd Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Mon, 26 Nov 2018 13:42:52 +0100 Subject: [PATCH] Use BOOLEAN in storm --- 3rdParty/Storm/Source/storm.cpp | 6 +++--- 3rdParty/Storm/Source/storm.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/3rdParty/Storm/Source/storm.cpp b/3rdParty/Storm/Source/storm.cpp index d3968164d..750592db6 100644 --- a/3rdParty/Storm/Source/storm.cpp +++ b/3rdParty/Storm/Source/storm.cpp @@ -226,14 +226,14 @@ int STORMAPI SBigToBinaryBuffer(void *buffer, int length, int a3, int a4) rInt; void __stdcall SDrawMessageBox(char *,char *,int) rVoid; void __cdecl SDrawDestroy(void) rVoid; -bool __cdecl StormDestroy(void) rBool; -bool __stdcall SFileSetBasePath(char *) rBool; +BOOLEAN __cdecl StormDestroy(void) rBool; +BOOLEAN __stdcall SFileSetBasePath(char *) rBool; void __cdecl SDrawRealizePalette(void) rVoid; BOOL __cdecl SVidPlayContinue(void) rBool; BOOL __stdcall SNetGetOwnerTurnsWaiting(DWORD *) rBool; void * __stdcall SNetUnregisterEventHandler(int,void (__stdcall*)(struct _SNETEVENT *)) rPVoid; void * __stdcall SNetRegisterEventHandler(int,void (__stdcall*)(struct _SNETEVENT *)) rPVoid; -bool __stdcall SNetSetBasePlayer(int) rBool; +BOOLEAN __stdcall SNetSetBasePlayer(int) rBool; int __stdcall SNetInitializeProvider(unsigned long,struct _SNETPROGRAMDATA *,struct _SNETPLAYERDATA *,struct _SNETUIDATA *,struct _SNETVERSIONDATA *) rInt; int __stdcall SNetGetProviderCaps(struct _SNETCAPS *) rInt; int __stdcall SFileSetFilePointer(HANDLE,int,HANDLE,int) rInt; diff --git a/3rdParty/Storm/Source/storm.h b/3rdParty/Storm/Source/storm.h index 562a258fc..134e189fe 100644 --- a/3rdParty/Storm/Source/storm.h +++ b/3rdParty/Storm/Source/storm.h @@ -1288,14 +1288,14 @@ int STORMAPI SBigToBinaryBuffer(void *buffer, int length, int a3, int a4); void __stdcall SDrawMessageBox(char *,char *,int); void __cdecl SDrawDestroy(void); -bool __cdecl StormDestroy(void); -bool __stdcall SFileSetBasePath(char *); +BOOLEAN __cdecl StormDestroy(void); +BOOLEAN __stdcall SFileSetBasePath(char *); void __cdecl SDrawRealizePalette(void); BOOL __cdecl SVidPlayContinue(void); BOOL __stdcall SNetGetOwnerTurnsWaiting(DWORD *); void * __stdcall SNetUnregisterEventHandler(int,void (__stdcall*)(struct _SNETEVENT *)); void * __stdcall SNetRegisterEventHandler(int,void (__stdcall*)(struct _SNETEVENT *)); -bool __stdcall SNetSetBasePlayer(int); +BOOLEAN __stdcall SNetSetBasePlayer(int); int __stdcall SNetInitializeProvider(unsigned long,struct _SNETPROGRAMDATA *,struct _SNETPLAYERDATA *,struct _SNETUIDATA *,struct _SNETVERSIONDATA *); int __stdcall SNetGetProviderCaps(struct _SNETCAPS *); int __stdcall SFileSetFilePointer(HANDLE,int,HANDLE,int);