Added GetSecurityInfo stub.
This commit is contained in:
parent
9638e02d7d
commit
18e195a89b
@ -122,7 +122,7 @@
|
|||||||
@ stdcall GetSecurityDescriptorLength(ptr)
|
@ stdcall GetSecurityDescriptorLength(ptr)
|
||||||
@ stdcall GetSecurityDescriptorOwner(ptr ptr ptr)
|
@ stdcall GetSecurityDescriptorOwner(ptr ptr ptr)
|
||||||
@ stdcall GetSecurityDescriptorSacl (ptr 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)
|
@ stdcall GetSecurityInfoExW (long long long wstr wstr ptr ptr wstr wstr)
|
||||||
@ stub GetServiceDisplayNameA
|
@ stub GetServiceDisplayNameA
|
||||||
@ stub GetServiceDisplayNameW
|
@ stub GetServiceDisplayNameW
|
||||||
|
@ -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.@]
|
* GetSecurityInfoExW [ADVAPI32.@]
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user