advapi32: Add stubs for ControlTrace[A|W].
This commit is contained in:
parent
75794304b4
commit
61d6a6bf88
|
@ -65,8 +65,8 @@
|
||||||
@ stdcall CommandLineFromMsiDescriptor(wstr ptr ptr)
|
@ stdcall CommandLineFromMsiDescriptor(wstr ptr ptr)
|
||||||
# @ stub ComputeAccessTokenFromCodeAuthzLevel
|
# @ stub ComputeAccessTokenFromCodeAuthzLevel
|
||||||
@ stdcall ControlService(long long ptr)
|
@ stdcall ControlService(long long ptr)
|
||||||
# @ stub ControlTraceA
|
@ stdcall ControlTraceA(double str ptr long)
|
||||||
# @ stub ControlTraceW
|
@ stdcall ControlTraceW(double wstr ptr long)
|
||||||
# @ stub ConvertAccessToSecurityDescriptorA
|
# @ stub ConvertAccessToSecurityDescriptorA
|
||||||
# @ stub ConvertAccessToSecurityDescriptorW
|
# @ stub ConvertAccessToSecurityDescriptorW
|
||||||
# @ stub ConvertSDToStringSDRootDomainA
|
# @ stub ConvertSDToStringSDRootDomainA
|
||||||
|
|
|
@ -115,6 +115,30 @@ BOOL WINAPI CloseEventLog( HANDLE hEventLog )
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* ControlTraceW [ADVAPI32.@]
|
||||||
|
*
|
||||||
|
* Control a givel event trace session
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ULONG WINAPI ControlTraceW( TRACEHANDLE hSession, LPCWSTR SessionName, PEVENT_TRACE_PROPERTIES Properties, ULONG control )
|
||||||
|
{
|
||||||
|
FIXME("(%s, %s, %p, %d) stub\n", wine_dbgstr_longlong(hSession), debugstr_w(SessionName), Properties, control);
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* ControlTraceA [ADVAPI32.@]
|
||||||
|
*
|
||||||
|
* See ControlTraceW.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ULONG WINAPI ControlTraceA( TRACEHANDLE hSession, LPCSTR SessionName, PEVENT_TRACE_PROPERTIES Properties, ULONG control )
|
||||||
|
{
|
||||||
|
FIXME("(%s, %s, %p, %d) stub\n", wine_dbgstr_longlong(hSession), debugstr_a(SessionName), Properties, control);
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* DeregisterEventSource [ADVAPI32.@]
|
* DeregisterEventSource [ADVAPI32.@]
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue