Commit de70942e authored by Jason Edmeades's avatar Jason Edmeades Committed by Alexandre Julliard

Add stub for SetSecurityInfo.

parent cdbab8bc
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment