advapi32: Stub TreeResetNamedSecurityInfo for the IE8 installer.
This commit is contained in:
parent
cdad788d33
commit
df1203342c
|
@ -640,7 +640,7 @@
|
|||
@ stub TraceMessage
|
||||
@ stub TraceMessageVa
|
||||
# @ stub TreeResetNamedSecurityInfoA
|
||||
# @ stub TreeResetNamedSecurityInfoW
|
||||
@ stdcall TreeResetNamedSecurityInfoW(wstr long long ptr ptr ptr ptr long ptr long ptr)
|
||||
# @ stub TrusteeAccessToObjectA
|
||||
# @ stub TrusteeAccessToObjectW
|
||||
# @ stub UninstallApplication
|
||||
|
|
|
@ -5207,3 +5207,16 @@ BOOL WINAPI SaferCreateLevel(DWORD ScopeId, DWORD LevelId, DWORD OpenFlags,
|
|||
FIXME("(%u, %x, %u, %p, %p) stub\n", ScopeId, LevelId, OpenFlags, LevelHandle, lpReserved);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
DWORD WINAPI TreeResetNamedSecurityInfoW( LPWSTR pObjectName,
|
||||
SE_OBJECT_TYPE ObjectType, SECURITY_INFORMATION SecurityInfo,
|
||||
PSID pOwner, PSID pGroup, PACL pDacl, PACL pSacl,
|
||||
BOOL KeepExplicit, FN_PROGRESS fnProgress,
|
||||
PROG_INVOKE_SETTING ProgressInvokeSetting, PVOID Args)
|
||||
{
|
||||
FIXME("(%s, %i, %i, %p, %p, %p, %p, %i, %p, %i, %p Stub\n",
|
||||
debugstr_w(pObjectName), ObjectType, SecurityInfo, pOwner, pGroup,
|
||||
pDacl, pSacl, KeepExplicit, fnProgress, ProgressInvokeSetting, Args);
|
||||
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef void (*FN_PROGRESS)(LPWSTR,DWORD,PPROG_INVOKE_SETTING,PVOID,BOOL);
|
||||
|
||||
WINADVAPI DWORD WINAPI GetExplicitEntriesFromAclA( PACL, PULONG, PEXPLICIT_ACCESS_A* );
|
||||
WINADVAPI DWORD WINAPI GetExplicitEntriesFromAclW( PACL, PULONG, PEXPLICIT_ACCESS_W* );
|
||||
#define GetExplicitEntriesFromAcl WINELIB_NAME_AW(GetExplicitEntriesFromAcl)
|
||||
|
|
Loading…
Reference in New Issue