Add stub for SetSecurityInfo.

This commit is contained in:
Jason Edmeades 2005-03-07 11:00:24 +00:00 committed by Alexandre Julliard
parent cdbab8bcfd
commit de70942e6d
2 changed files with 11 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}