Commit 42f730dd authored by Alexandre Julliard's avatar Alexandre Julliard

gdiplus: Fixed GdiplusStartupOutput definition.

parent 72a760be
......@@ -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
......
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