mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
advapi32: Return a fake handle from EventRegister.
This commit is contained in:
parent
32c7a52f5c
commit
cb436f7122
@ -834,7 +834,9 @@ ULONG WINAPI UnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
|
||||
ULONG WINAPI EventRegister( LPCGUID provider, PENABLECALLBACK callback, PVOID context, PREGHANDLE handle )
|
||||
{
|
||||
FIXME("%s, %p, %p, %p\n", debugstr_guid(provider), callback, context, handle);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
|
||||
*handle = 0xdeadbeef;
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user