Alexandre Julliard : gdiplus: Fixed GdiplusStartupOutput definition.
Module: wine Branch: master Commit: 42f730ddf5bef519930b25e3e8e7e04639b7c6ad URL: http://source.winehq.org/git/wine.git/?a=commit;h=42f730ddf5bef519930b25e3e8... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Mon Aug 6 12:21:52 2007 +0200 gdiplus: Fixed GdiplusStartupOutput definition. --- include/gdiplusinit.h | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/gdiplusinit.h b/include/gdiplusinit.h index fd7e9e5..22155b7 100644 --- a/include/gdiplusinit.h +++ b/include/gdiplusinit.h @@ -26,6 +26,8 @@ enum DebugEventLevel }; typedef VOID (WINAPI *DebugEventProc)(enum DebugEventLevel, CHAR *); +typedef Status (WINAPI *NotificationHookProc)(ULONG_PTR *); +typedef void (WINAPI *NotificationUnhookProc)(ULONG_PTR); struct GdiplusStartupInput { @@ -49,8 +51,8 @@ struct GdiplusStartupInput struct GdiplusStartupOutput { - ULONG_PTR NotificationHook; - ULONG_PTR NotificationUnhook; + NotificationHookProc NotificationHook; + NotificationUnhookProc NotificationUnhook; }; #ifdef __cplusplus
participants (1)
-
Alexandre Julliard