Stubs for BuildTrusteeWithSid(A/W).

oldstable
Mike McCormack 2003-08-11 18:41:28 +00:00 committed by Alexandre Julliard
parent bcb6ecf8cb
commit 49b408b192
2 changed files with 18 additions and 0 deletions

View File

@ -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)

View File

@ -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);
}