Commit 9260e633 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

winemac: Fix return type of ProcessEvents().

Introduced by commit a97fd9f2
parent 907b1b4a
...@@ -512,7 +512,7 @@ static int process_events(macdrv_event_queue queue, macdrv_event_mask mask) ...@@ -512,7 +512,7 @@ static int process_events(macdrv_event_queue queue, macdrv_event_mask mask)
/*********************************************************************** /***********************************************************************
* ProcessEvents (MACDRV.@) * ProcessEvents (MACDRV.@)
*/ */
NTSTATUS macdrv_ProcessEvents(DWORD mask) BOOL macdrv_ProcessEvents(DWORD mask)
{ {
struct macdrv_thread_data *data = macdrv_thread_data(); struct macdrv_thread_data *data = macdrv_thread_data();
macdrv_event_mask event_mask = get_event_mask(mask); macdrv_event_mask event_mask = get_event_mask(mask);
......
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