Commit d1a5d5ae authored by Alexandre Julliard's avatar Alexandre Julliard

user: Make WINPROC_CallProc32WTo32A take a callback function pointer.

This way it doesn't need to know about dialog procedures. Also renamed it to WINPROC_CallProcWtoA.
parent 1b320431
......@@ -44,6 +44,9 @@ typedef struct
struct tagWINDOWPROC;
typedef LRESULT (*winproc_callback_t)( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
LRESULT *result, void *arg );
extern WNDPROC16 WINPROC_GetProc16( WNDPROC proc, BOOL unicode );
extern WNDPROC WINPROC_AllocProc16( WNDPROC16 func );
extern WNDPROC WINPROC_GetProc( WNDPROC proc, BOOL unicode );
......
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