Stubs for BuildTrusteeWithSid(A/W).
This commit is contained in:
parent
bcb6ecf8cb
commit
49b408b192
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue