Commit fe1374cc authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32: Fix empty function prototypes.

parent 0e67f65c
...@@ -114,7 +114,7 @@ typedef struct ...@@ -114,7 +114,7 @@ typedef struct
{ {
WORD pushw_bp; /* pushw %bp */ WORD pushw_bp; /* pushw %bp */
BYTE pushl; /* pushl $target */ BYTE pushl; /* pushl $target */
void (*target)(); void *target;
WORD call; /* call CALLFROM16 */ WORD call; /* call CALLFROM16 */
short callfrom16; short callfrom16;
} ENTRYPOINT16; } ENTRYPOINT16;
...@@ -147,8 +147,8 @@ typedef struct _THHOOK ...@@ -147,8 +147,8 @@ typedef struct _THHOOK
HTASK16 LockTDB; /* 14 hLockedTask */ HTASK16 LockTDB; /* 14 hLockedTask */
} THHOOK; } THHOOK;
extern LONG __wine_call_from_16(); extern LONG __wine_call_from_16(void);
extern void __wine_call_from_16_regs(); extern void __wine_call_from_16_regs(void);
extern THHOOK *pThhook; extern THHOOK *pThhook;
......
...@@ -48,11 +48,11 @@ WINE_DECLARE_DEBUG_CHANNEL(snoop); ...@@ -48,11 +48,11 @@ WINE_DECLARE_DEBUG_CHANNEL(snoop);
extern DWORD WINAPI wine_call_to_16( FARPROC16 target, DWORD cbArgs, PEXCEPTION_HANDLER handler ); extern DWORD WINAPI wine_call_to_16( FARPROC16 target, DWORD cbArgs, PEXCEPTION_HANDLER handler );
extern void WINAPI wine_call_to_16_regs( CONTEXT86 *context, DWORD cbArgs, PEXCEPTION_HANDLER handler ); extern void WINAPI wine_call_to_16_regs( CONTEXT86 *context, DWORD cbArgs, PEXCEPTION_HANDLER handler );
extern void __wine_call_to_16_ret(void); extern void __wine_call_to_16_ret(void);
extern void CALL32_CBClient_Ret(); extern void CALL32_CBClient_Ret(void);
extern void CALL32_CBClientEx_Ret(); extern void CALL32_CBClientEx_Ret(void);
extern void DPMI_PendingEventCheck(); extern void DPMI_PendingEventCheck(void);
extern void DPMI_PendingEventCheck_Cleanup(); extern void DPMI_PendingEventCheck_Cleanup(void);
extern void DPMI_PendingEventCheck_Return(); extern void DPMI_PendingEventCheck_Return(void);
extern BYTE __wine_call16_start[]; extern BYTE __wine_call16_start[];
extern BYTE __wine_call16_end[]; extern BYTE __wine_call16_end[];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment