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
af661084
Commit
af661084
authored
Oct 12, 2015
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Implement RtlValidRelativeSecurityDescriptor.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fba70e71
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
sec.c
dlls/ntdll/sec.c
+10
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
af661084
...
...
@@ -939,7 +939,7 @@
@ stub RtlUsageHeap
@ cdecl -i386 -norelay RtlUshortByteSwap() NTDLL_RtlUshortByteSwap
@ stdcall RtlValidAcl(ptr)
# @ stub RtlValidRelativeSecurityDescriptor
@ stdcall RtlValidRelativeSecurityDescriptor(ptr long long)
@ stdcall RtlValidSecurityDescriptor(ptr)
@ stdcall RtlValidSid(ptr)
@ stdcall RtlValidateHeap(long long ptr)
...
...
dlls/ntdll/sec.c
View file @
af661084
...
...
@@ -558,6 +558,16 @@ NTSTATUS WINAPI RtlValidSecurityDescriptor(
}
/**************************************************************************
* RtlValidRelativeSecurityDescriptor [NTDLL.@]
*/
BOOLEAN
WINAPI
RtlValidRelativeSecurityDescriptor
(
PSECURITY_DESCRIPTOR
descriptor
,
ULONG
length
,
SECURITY_INFORMATION
info
)
{
FIXME
(
"%p,%u,%d: semi-stub
\n
"
,
descriptor
,
length
,
info
);
return
RtlValidSecurityDescriptor
(
descriptor
)
==
STATUS_SUCCESS
;
}
/**************************************************************************
* RtlLengthSecurityDescriptor [NTDLL.@]
*/
ULONG
WINAPI
RtlLengthSecurityDescriptor
(
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
af661084
...
...
@@ -1191,7 +1191,7 @@
@ stdcall RtlUpcaseUnicodeToOemN(ptr long ptr ptr long) ntdll.RtlUpcaseUnicodeToOemN
@ stdcall RtlUpperChar(long) ntdll.RtlUpperChar
@ stdcall RtlUpperString(ptr ptr) ntdll.RtlUpperString
@ st
ub
RtlValidRelativeSecurityDescriptor
@ st
dcall RtlValidRelativeSecurityDescriptor(ptr long long) ntdll.
RtlValidRelativeSecurityDescriptor
@ stdcall RtlValidSecurityDescriptor(ptr) ntdll.RtlValidSecurityDescriptor
@ stdcall RtlValidSid(ptr) ntdll.RtlValidSid
@ stdcall RtlVerifyVersionInfo(ptr long int64) ntdll.RtlVerifyVersionInfo
...
...
include/winternl.h
View file @
af661084
...
...
@@ -2603,6 +2603,7 @@ NTSYSAPI NTSTATUS WINAPI RtlUpdateTimer(HANDLE, HANDLE, DWORD, DWORD);
NTSYSAPI
CHAR
WINAPI
RtlUpperChar
(
CHAR
);
NTSYSAPI
void
WINAPI
RtlUpperString
(
STRING
*
,
const
STRING
*
);
NTSYSAPI
NTSTATUS
WINAPI
RtlValidSecurityDescriptor
(
PSECURITY_DESCRIPTOR
);
NTSYSAPI
BOOLEAN
WINAPI
RtlValidRelativeSecurityDescriptor
(
PSECURITY_DESCRIPTOR
,
ULONG
,
SECURITY_INFORMATION
);
NTSYSAPI
BOOLEAN
WINAPI
RtlValidAcl
(
PACL
);
NTSYSAPI
BOOLEAN
WINAPI
RtlValidSid
(
PSID
);
NTSYSAPI
BOOLEAN
WINAPI
RtlValidateHeap
(
HANDLE
,
ULONG
,
LPCVOID
);
...
...
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