Add stub for SetSecurityInfo.
This commit is contained in:
parent
cdbab8bcfd
commit
de70942e6d
|
@ -288,7 +288,7 @@
|
|||
@ stdcall SetSecurityDescriptorGroup (ptr ptr long)
|
||||
@ stdcall SetSecurityDescriptorOwner (ptr ptr long)
|
||||
@ stdcall SetSecurityDescriptorSacl(ptr long ptr long)
|
||||
@ stub SetSecurityInfo #(ptr long ptr ptr ptr ptr ptr ptr)
|
||||
@ stdcall SetSecurityInfo (long long long ptr ptr ptr ptr)
|
||||
@ stdcall SetServiceBits(long long long long)
|
||||
@ stdcall SetServiceObjectSecurity(long long ptr)
|
||||
@ stdcall SetServiceStatus(long long)
|
||||
|
|
|
@ -3316,3 +3316,13 @@ BOOL WINAPI EncryptFileA(LPCSTR lpFileName)
|
|||
FIXME("%s\n", debugstr_a(lpFileName));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* SetSecurityInfo [ADVAPI32.@]
|
||||
*/
|
||||
DWORD SetSecurityInfo(HANDLE handle, SE_OBJECT_TYPE ObjectType,
|
||||
SECURITY_INFORMATION SecurityInfo, PSID psidOwner,
|
||||
PSID psidGroup, PACL pDacl, PACL pSacl) {
|
||||
FIXME("stub\n");
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue