Commit d909d34f authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winmgmt: Enable compilation with long types.

parent 54e3c301
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = winmgmt.exe MODULE = winmgmt.exe
IMPORTS = advapi32 IMPORTS = advapi32
......
...@@ -51,7 +51,7 @@ static DWORD WINAPI service_handler( DWORD ctrl, DWORD event_type, LPVOID event_ ...@@ -51,7 +51,7 @@ static DWORD WINAPI service_handler( DWORD ctrl, DWORD event_type, LPVOID event_
SetEvent( stop_event ); SetEvent( stop_event );
return NO_ERROR; return NO_ERROR;
default: default:
FIXME( "got service ctrl %x\n", ctrl ); FIXME( "got service ctrl %lx\n", ctrl );
status.dwCurrentState = SERVICE_RUNNING; status.dwCurrentState = SERVICE_RUNNING;
SetServiceStatus( service_handle, &status ); SetServiceStatus( service_handle, &status );
return NO_ERROR; return NO_ERROR;
......
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