Functions with no paramters must be (void).
This commit is contained in:
parent
ccdc119da0
commit
681b71ed9a
|
@ -65,10 +65,10 @@ typedef long MSVCRT_clock_t;
|
||||||
typedef long MSVCRT_time_t;
|
typedef long MSVCRT_time_t;
|
||||||
typedef __int64 MSVCRT_fpos_t;
|
typedef __int64 MSVCRT_fpos_t;
|
||||||
|
|
||||||
typedef void (*MSVCRT_terminate_handler)();
|
typedef void (*MSVCRT_terminate_handler)(void);
|
||||||
typedef void (*MSVCRT_terminate_function)();
|
typedef void (*MSVCRT_terminate_function)(void);
|
||||||
typedef void (*MSVCRT_unexpected_handler)();
|
typedef void (*MSVCRT_unexpected_handler)(void);
|
||||||
typedef void (*MSVCRT_unexpected_function)();
|
typedef void (*MSVCRT_unexpected_function)(void);
|
||||||
typedef void (*MSVCRT__se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info);
|
typedef void (*MSVCRT__se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info);
|
||||||
typedef void (*MSVCRT__beginthread_start_routine_t)(void *);
|
typedef void (*MSVCRT__beginthread_start_routine_t)(void *);
|
||||||
typedef unsigned int (__stdcall *MSVCRT__beginthreadex_start_routine_t)(void *);
|
typedef unsigned int (__stdcall *MSVCRT__beginthreadex_start_routine_t)(void *);
|
||||||
|
|
|
@ -266,8 +266,8 @@ typedef struct tagSNOOP_RETURNENTRIES {
|
||||||
|
|
||||||
#include "poppack.h"
|
#include "poppack.h"
|
||||||
|
|
||||||
extern void WINAPI SNOOP_Entry();
|
extern void WINAPI SNOOP_Entry(void);
|
||||||
extern void WINAPI SNOOP_Return();
|
extern void WINAPI SNOOP_Return(void);
|
||||||
|
|
||||||
static SNOOP_DLL *firstdll;
|
static SNOOP_DLL *firstdll;
|
||||||
static SNOOP_RETURNENTRIES *firstrets;
|
static SNOOP_RETURNENTRIES *firstrets;
|
||||||
|
|
|
@ -173,7 +173,7 @@ LPVOID IMalloc16_fnHeapMinimize(IMalloc16* iface) {
|
||||||
* IMalloc16_Constructor [VTABLE]
|
* IMalloc16_Constructor [VTABLE]
|
||||||
*/
|
*/
|
||||||
LPMALLOC16
|
LPMALLOC16
|
||||||
IMalloc16_Constructor()
|
IMalloc16_Constructor(void)
|
||||||
{
|
{
|
||||||
static IMalloc16Vtbl vt16;
|
static IMalloc16Vtbl vt16;
|
||||||
static SEGPTR msegvt16;
|
static SEGPTR msegvt16;
|
||||||
|
|
Loading…
Reference in New Issue