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
56057acd
Commit
56057acd
authored
Mar 26, 2013
by
Austin English
Committed by
Alexandre Julliard
Mar 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a stub for RtlConvertToAutoInheritSecurityObject.
parent
b7ffca59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
sec.c
dlls/ntdll/sec.c
+13
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
56057acd
...
...
@@ -463,7 +463,7 @@
# @ stub RtlConvertPropertyToVariant
@ stub RtlConvertSharedToExclusive
@ stdcall RtlConvertSidToUnicodeString(ptr ptr long)
# @ stub RtlConvertToAutoInheritSecurityObject
@ stdcall RtlConvertToAutoInheritSecurityObject(ptr ptr ptr ptr long ptr)
@ stub RtlConvertUiListToApiList
@ stdcall -arch=win32 -ret64 RtlConvertUlongToLargeInteger(long)
# @ stub RtlConvertVariantToProperty
...
...
dlls/ntdll/sec.c
View file @
56057acd
...
...
@@ -1807,3 +1807,16 @@ NTSTATUS WINAPI RtlQueryInformationAcl(
return
status
;
}
BOOL
WINAPI
RtlConvertToAutoInheritSecurityObject
(
PSECURITY_DESCRIPTOR
pdesc
,
PSECURITY_DESCRIPTOR
cdesc
,
PSECURITY_DESCRIPTOR
*
ndesc
,
GUID
*
objtype
,
BOOL
isdir
,
PGENERIC_MAPPING
genmap
)
{
FIXME
(
"%p %p %p %p %d %p - stub
\n
"
,
pdesc
,
cdesc
,
ndesc
,
objtype
,
isdir
,
genmap
);
return
FALSE
;
}
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