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
89d42d64
Commit
89d42d64
authored
Feb 06, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Implement RtlAddressInSectionTable.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54432
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
c2d9e923
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
loader.c
dlls/ntdll/loader.c
+9
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/loader.c
View file @
89d42d64
...
...
@@ -4356,6 +4356,15 @@ PVOID WINAPI RtlImageRvaToVa( const IMAGE_NT_HEADERS *nt, HMODULE module,
/***********************************************************************
* RtlAddressInSectionTable (NTDLL.@)
*/
PVOID
WINAPI
RtlAddressInSectionTable
(
const
IMAGE_NT_HEADERS
*
nt
,
HMODULE
module
,
DWORD
rva
)
{
return
RtlImageRvaToVa
(
nt
,
module
,
rva
,
NULL
);
}
/***********************************************************************
* RtlPcToFileHeader (NTDLL.@)
*/
PVOID
WINAPI
RtlPcToFileHeader
(
PVOID
pc
,
PVOID
*
address
)
...
...
dlls/ntdll/ntdll.spec
View file @
89d42d64
...
...
@@ -490,7 +490,7 @@
# @ stub RtlAddRefMemoryStream
@ stdcall RtlAddVectoredContinueHandler(long ptr)
@ stdcall RtlAddVectoredExceptionHandler(long ptr)
# @ stub RtlAddressInSectionTable
@ stdcall RtlAddressInSectionTable(ptr long long)
@ stdcall RtlAdjustPrivilege(long long long ptr)
@ stdcall RtlAllocateAndInitializeSid (ptr long long long long long long long long long ptr)
@ stdcall RtlAllocateHandle(ptr ptr)
...
...
include/winternl.h
View file @
89d42d64
...
...
@@ -4260,6 +4260,7 @@ NTSYSAPI NTSTATUS WINAPI RtlAddAuditAccessObjectAce(PACL,DWORD,DWORD,DWORD,GUID
NTSYSAPI
NTSTATUS
WINAPI
RtlAddMandatoryAce
(
PACL
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
PSID
);
NTSYSAPI
void
WINAPI
RtlAddRefActivationContext
(
HANDLE
);
NTSYSAPI
PVOID
WINAPI
RtlAddVectoredExceptionHandler
(
ULONG
,
PVECTORED_EXCEPTION_HANDLER
);
NTSYSAPI
PVOID
WINAPI
RtlAddressInSectionTable
(
const
IMAGE_NT_HEADERS
*
,
HMODULE
,
DWORD
);
NTSYSAPI
NTSTATUS
WINAPI
RtlAdjustPrivilege
(
ULONG
,
BOOLEAN
,
BOOLEAN
,
PBOOLEAN
);
NTSYSAPI
NTSTATUS
WINAPI
RtlAllocateAndInitializeSid
(
PSID_IDENTIFIER_AUTHORITY
,
BYTE
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
PSID
*
);
NTSYSAPI
RTL_HANDLE
*
WINAPI
RtlAllocateHandle
(
RTL_HANDLE_TABLE
*
,
ULONG
*
);
...
...
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