Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
df120334
Commit
df120334
authored
Mar 25, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Mar 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Stub TreeResetNamedSecurityInfo for the IE8 installer.
parent
cdad788d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
security.c
dlls/advapi32/security.c
+13
-0
aclapi.h
include/aclapi.h
+2
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
df120334
...
...
@@ -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
...
...
dlls/advapi32/security.c
View file @
df120334
...
...
@@ -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
;
}
include/aclapi.h
View file @
df120334
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment