Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
9a448b5d
Commit
9a448b5d
authored
Jan 22, 2013
by
Ričardas Barkauskas
Committed by
Alexandre Julliard
Jan 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add AddMandatoryAce stub.
parent
9d49dd82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
security.c
dlls/advapi32/security.c
+6
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
9a448b5d
...
...
@@ -25,7 +25,7 @@
@ stdcall AddAuditAccessAceEx(ptr long long long ptr long long)
# @ stub AddAuditAccessObjectAce
# @ stub AddConditionalAce
# @ stub AddMandatoryAce
@ stdcall AddMandatoryAce(ptr long long long ptr)
# @ stub AddUsersToEncryptedFileEx
# @ stub ADVAPI32_1000
# @ stub AddUsersToEncryptedFile
...
...
dlls/advapi32/security.c
View file @
9a448b5d
...
...
@@ -1567,6 +1567,12 @@ BOOL WINAPI AddAce(
return
set_ntstatus
(
RtlAddAce
(
pAcl
,
dwAceRevision
,
dwStartingAceIndex
,
pAceList
,
nAceListLength
));
}
BOOL
WINAPI
AddMandatoryAce
(
ACL
*
acl
,
DWORD
ace_revision
,
DWORD
ace_flags
,
DWORD
mandatory_policy
,
PSID
label_sid
)
{
FIXME
(
"%p %x %x %x %p - stub
\n
"
,
acl
,
ace_revision
,
ace_flags
,
mandatory_policy
,
label_sid
);
return
FALSE
;
}
/******************************************************************************
* DeleteAce [ADVAPI32.@]
*/
...
...
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