Added GetSecurityInfo stub.

oldstable
Evan Deaubl 2004-08-26 00:29:06 +00:00 committed by Alexandre Julliard
parent 9638e02d7d
commit 18e195a89b
2 changed files with 15 additions and 1 deletions

View File

@ -122,7 +122,7 @@
@ stdcall GetSecurityDescriptorLength(ptr)
@ stdcall GetSecurityDescriptorOwner(ptr ptr ptr)
@ stdcall GetSecurityDescriptorSacl (ptr ptr ptr ptr)
@ stub GetSecurityInfo #(long long long ptr ptr ptr ptr ptr) GetSecurityInfo
@ stdcall GetSecurityInfo (long long long ptr ptr ptr ptr ptr)
@ stdcall GetSecurityInfoExW (long long long wstr wstr ptr ptr wstr wstr)
@ stub GetServiceDisplayNameA
@ stub GetServiceDisplayNameW

View File

@ -1494,6 +1494,20 @@ BOOL WINAPI AccessCheckAndAuditAlarmW(LPCWSTR Subsystem, LPVOID HandleId, LPWSTR
}
/******************************************************************************
* GetSecurityInfo [ADVAPI32.@]
*/
DWORD WINAPI GetSecurityInfo(
HANDLE hObject, SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo, PSID *ppsidOwner,
PSID *ppsidGroup, PACL *ppDacl, PACL *ppSacl,
PSECURITY_DESCRIPTOR *ppSecurityDescriptor
)
{
FIXME("stub!\n");
return ERROR_BAD_PROVIDER;
}
/******************************************************************************
* GetSecurityInfoExW [ADVAPI32.@]
*/