Pass the type/name as a C string instead of an
[wine.git] / include / callback.h
blob9a17854e280f88ce7db80acd30fc056f465eb731
1 /*
2 * Callback functions
4 * Copyright 1995 Alexandre Julliard
5 */
7 #ifndef __WINE_CALLBACK_H
8 #define __WINE_CALLBACK_H
10 #include "windef.h"
11 #include "winnt.h"
12 #include "wingdi.h"
13 #include "wine/winuser16.h"
15 extern void SYSDEPS_SwitchToThreadStack( void (*func)(void) ) WINE_NORETURN;
16 extern int SYSDEPS_CallOnLargeStack( int (*func)(void *), void *arg );
18 #define CALL_LARGE_STACK( func, arg ) \
19 SYSDEPS_CallOnLargeStack( (int (*)(void *))(func), (void *)(arg) )
21 typedef void (*RELAY)();
22 extern FARPROC THUNK_Alloc( FARPROC16 func, RELAY relay );
23 extern void THUNK_Free( FARPROC thunk );
24 extern BOOL THUNK_Init(void);
25 extern void THUNK_InitCallout(void);
28 typedef struct
30 BOOL WINAPI (*PeekMessageA)( LPMSG, HWND, UINT, UINT, UINT );
31 BOOL WINAPI (*GetMessageA)( MSG*, HWND, UINT, UINT );
32 LRESULT WINAPI (*SendMessageA)( HWND, UINT, WPARAM, LPARAM );
33 BOOL WINAPI (*PostMessageA)( HWND, UINT, WPARAM, LPARAM );
34 BOOL16 WINAPI (*PostAppMessage16)( HTASK16, UINT16, WPARAM16, LPARAM );
35 BOOL WINAPI (*PostThreadMessageA)( DWORD, UINT, WPARAM, LPARAM );
36 BOOL WINAPI (*TranslateMessage)( const MSG *msg );
37 LONG WINAPI (*DispatchMessageA)( const MSG* msg );
38 BOOL WINAPI (*RedrawWindow)( HWND, const RECT *, HRGN, UINT );
39 WORD WINAPI (*UserSignalProc)( UINT, DWORD, DWORD, HMODULE16 );
40 void WINAPI (*FinalUserInit16)( void );
41 HQUEUE16 WINAPI (*InitThreadInput16)( WORD, WORD );
42 void WINAPI (*UserYield16)( void );
43 WORD WINAPI (*DestroyIcon32)( HGLOBAL16, UINT16 );
44 DWORD WINAPI (*WaitForInputIdle)( HANDLE, DWORD );
45 DWORD WINAPI (*MsgWaitForMultipleObjects)( DWORD, HANDLE *, BOOL, DWORD, DWORD );
46 HWND WINAPI (*WindowFromDC)( HDC );
47 HWND WINAPI (*GetForegroundWindow)(void);
48 BOOL WINAPI (*IsChild)( HWND parent, HWND );
49 INT WINAPI (*MessageBoxA)( HWND, LPCSTR, LPCSTR, UINT );
50 INT WINAPI (*MessageBoxW)( HWND, LPCWSTR, LPCWSTR, UINT );
51 } CALLOUT_TABLE;
53 extern CALLOUT_TABLE Callout;
55 #include "pshpack1.h"
57 typedef struct tagTHUNK
59 BYTE popl_eax; /* 0x58 popl %eax (return address)*/
60 BYTE pushl_func; /* 0x68 pushl $proc */
61 FARPROC16 proc WINE_PACKED;
62 BYTE pushl_eax; /* 0x50 pushl %eax */
63 BYTE jmp; /* 0xe9 jmp relay (relative jump)*/
64 RELAY relay WINE_PACKED;
65 struct tagTHUNK *next WINE_PACKED;
66 DWORD magic;
67 } THUNK;
69 #include "poppack.h"
71 #define CALLTO16_THUNK_MAGIC 0x54484e4b /* "THNK" */
73 #define DECL_THUNK(aname,aproc,arelay) \
74 THUNK aname; \
75 aname.popl_eax = 0x58; \
76 aname.pushl_func = 0x68; \
77 aname.proc = (FARPROC) (aproc); \
78 aname.pushl_eax = 0x50; \
79 aname.jmp = 0xe9; \
80 aname.relay = (RELAY)((char *)(arelay) - (char *)(&(aname).next)); \
81 aname.next = NULL; \
82 aname.magic = CALLTO16_THUNK_MAGIC;
84 #endif /* __WINE_CALLBACK_H */