advapi32: Add a stub for CloseTrace.

This commit is contained in:
Austin English 2012-01-26 14:35:08 -08:00 committed by Alexandre Julliard
parent 8eb9ab531f
commit ce233a46e0
2 changed files with 10 additions and 1 deletions

View file

@ -61,7 +61,7 @@
# @ stub CloseEncryptedFileRaw
@ stdcall CloseEventLog (long)
@ stdcall CloseServiceHandle(long)
# @ stub CloseTrace
@ stdcall CloseTrace(int64)
@ stdcall CommandLineFromMsiDescriptor(wstr ptr ptr)
# @ stub ComputeAccessTokenFromCodeAuthzLevel
@ stdcall ControlService(long long ptr)

View file

@ -908,3 +908,12 @@ ULONG WINAPI TraceMessageVa( TRACEHANDLE handle, ULONG flags, LPGUID guid, USHOR
FIXME("(%s %x %s %d) : stub\n", wine_dbgstr_longlong(handle), flags, debugstr_guid(guid), number);
return ERROR_SUCCESS;
}
/******************************************************************************
* CloseTrace [ADVAPI32.@]
*/
ULONG WINAPI CloseTrace( TRACEHANDLE handle )
{
FIXME("%s: stub\n", wine_dbgstr_longlong(handle));
return ERROR_INVALID_HANDLE;
}