Commit f00beab5 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

ntoskrnl.exe/winedevice: Make wine_ntoskrnl_main_loop CDECL.

parent a411f25d
...@@ -191,7 +191,7 @@ static NTSTATUS process_ioctl( DEVICE_OBJECT *device, ULONG code, void *in_buff, ...@@ -191,7 +191,7 @@ static NTSTATUS process_ioctl( DEVICE_OBJECT *device, ULONG code, void *in_buff,
/*********************************************************************** /***********************************************************************
* wine_ntoskrnl_main_loop (Not a Windows API) * wine_ntoskrnl_main_loop (Not a Windows API)
*/ */
NTSTATUS wine_ntoskrnl_main_loop( HANDLE stop_event ) NTSTATUS CDECL wine_ntoskrnl_main_loop( HANDLE stop_event )
{ {
HANDLE manager = get_device_manager(); HANDLE manager = get_device_manager();
obj_handle_t ioctl = 0; obj_handle_t ioctl = 0;
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(winedevice); WINE_DEFAULT_DEBUG_CHANNEL(winedevice);
WINE_DECLARE_DEBUG_CHANNEL(relay); WINE_DECLARE_DEBUG_CHANNEL(relay);
extern NTSTATUS wine_ntoskrnl_main_loop( HANDLE stop_event ); extern NTSTATUS CDECL wine_ntoskrnl_main_loop( HANDLE stop_event );
static WCHAR *driver_name; static WCHAR *driver_name;
static SERVICE_STATUS_HANDLE service_handle; static SERVICE_STATUS_HANDLE service_handle;
......
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