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
9a99a39e
Commit
9a99a39e
authored
Mar 30, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 30, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation of RtlAbsoluteToSelfRelativeSD.
parent
2a438aa0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
sec.c
dlls/ntdll/sec.c
+15
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
9a99a39e
...
...
@@ -277,7 +277,7 @@
@ stub PfxRemovePrefix
@ stub RestoreEm87Context
@ stub RtlAbortRXact
@ st
ub RtlAbsoluteToSelfRelativeSD
@ st
dcall RtlAbsoluteToSelfRelativeSD(ptr ptr ptr)
@ stdcall RtlAcquirePebLock()
@ stdcall RtlAcquireResourceExclusive(ptr long)
@ stdcall RtlAcquireResourceShared(ptr long)
...
...
dlls/ntdll/sec.c
View file @
9a99a39e
...
...
@@ -831,6 +831,21 @@ NTSTATUS WINAPI RtlSelfRelativeToAbsoluteSD(
return
status
;
}
/**************************************************************************
* RtlAbsoluteToSelfRelativeSD [NTDLL.@]
*/
NTSTATUS
WINAPI
RtlAbsoluteToSelfRelativeSD
(
PSECURITY_DESCRIPTOR
AbsoluteSecurityDescriptor
,
PSECURITY_DESCRIPTOR
SelfRelativeSecurityDescriptor
,
PULONG
BufferLength
)
{
FIXME
(
"%p %p %p
\n
"
,
AbsoluteSecurityDescriptor
,
SelfRelativeSecurityDescriptor
,
BufferLength
);
return
STATUS_NOT_IMPLEMENTED
;
}
/*
* access control list's
*/
...
...
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