plugplay: Enable compilation with long types.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
eb1ff55636
commit
47dc412315
|
@ -1,4 +1,3 @@
|
||||||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
|
||||||
MODULE = plugplay.exe
|
MODULE = plugplay.exe
|
||||||
IMPORTS = advapi32 rpcrt4 user32
|
IMPORTS = advapi32 rpcrt4 user32
|
||||||
|
|
||||||
|
|
|
@ -190,7 +190,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:
|
||||||
WINE_FIXME( "got service ctrl %x\n", ctrl );
|
WINE_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;
|
||||||
|
@ -208,17 +208,17 @@ static void WINAPI ServiceMain( DWORD argc, LPWSTR *argv )
|
||||||
|
|
||||||
if ((err = RpcServerUseProtseqEpA( protseq, 0, endpoint, NULL )))
|
if ((err = RpcServerUseProtseqEpA( protseq, 0, endpoint, NULL )))
|
||||||
{
|
{
|
||||||
ERR("RpcServerUseProtseqEp() failed, error %u\n", err);
|
ERR("RpcServerUseProtseqEp() failed, error %lu\n", err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((err = RpcServerRegisterIf( plugplay_v0_0_s_ifspec, NULL, NULL )))
|
if ((err = RpcServerRegisterIf( plugplay_v0_0_s_ifspec, NULL, NULL )))
|
||||||
{
|
{
|
||||||
ERR("RpcServerRegisterIf() failed, error %u\n", err);
|
ERR("RpcServerRegisterIf() failed, error %lu\n", err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((err = RpcServerListen( 1, RPC_C_LISTEN_MAX_CALLS_DEFAULT, TRUE )))
|
if ((err = RpcServerListen( 1, RPC_C_LISTEN_MAX_CALLS_DEFAULT, TRUE )))
|
||||||
{
|
{
|
||||||
ERR("RpcServerListen() failed, error %u\n", err);
|
ERR("RpcServerListen() failed, error %lu\n", err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue