Commit 49b408b1 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Stubs for BuildTrusteeWithSid(A/W).

parent bcb6ecf8
......@@ -18,6 +18,8 @@
@ stub AreAnyAccessesGranted
@ stdcall BackupEventLogA (long str)
@ stdcall BackupEventLogW (long wstr)
@ stdcall BuildTrusteeWithSidA(ptr ptr)
@ stdcall BuildTrusteeWithSidW(ptr ptr)
@ stub ChangeServiceConfigA
@ stub ChangeServiceConfigW
@ stdcall ClearEventLogA (long str)
......
......@@ -1334,3 +1334,19 @@ DWORD WINAPI GetSecurityInfoExW(
FIXME("stub!\n");
return ERROR_BAD_PROVIDER;
}
/******************************************************************************
* BuildTrusteeWithSidA [ADVAPI32.@]
*/
VOID WINAPI BuildTrusteeWithSidA(PTRUSTEEA pTrustee, PSID pSid)
{
FIXME("%p %p\n", pTrustee, pSid);
}
/******************************************************************************
* BuildTrusteeWithSidW [ADVAPI32.@]
*/
VOID WINAPI BuildTrusteeWithSidW(PTRUSTEEW pTrustee, PSID pSid)
{
FIXME("%p %p\n", pTrustee, pSid);
}
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