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
df7f4fb7
Commit
df7f4fb7
authored
Mar 23, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Mar 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stubs for RtlAddFunctionTable and RtlDeleteFunctionTable on ARM.
parent
18c95cf1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
4 deletions
+27
-4
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
signal_arm.c
dlls/ntdll/signal_arm.c
+20
-0
winnt.h
include/winnt.h
+3
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
df7f4fb7
...
...
@@ -1028,11 +1028,11 @@
@ stdcall ResetWriteWatch(ptr long)
@ stdcall RestoreLastError(long) ntdll.RtlRestoreLastWin32Error
@ stdcall ResumeThread(long)
@ cdecl -arch=x86_64 RtlAddFunctionTable(ptr long long) ntdll.RtlAddFunctionTable
@ cdecl -arch=
arm,
x86_64 RtlAddFunctionTable(ptr long long) ntdll.RtlAddFunctionTable
@ stdcall -register RtlCaptureContext(ptr) ntdll.RtlCaptureContext
@ stdcall RtlCaptureStackBackTrace(long long ptr ptr) ntdll.RtlCaptureStackBackTrace
@ stdcall -arch=x86_64 RtlCompareMemory(ptr ptr long) ntdll.RtlCompareMemory
@ cdecl -arch=x86_64 RtlDeleteFunctionTable(ptr) ntdll.RtlDeleteFunctionTable
@ cdecl -arch=
arm,
x86_64 RtlDeleteFunctionTable(ptr) ntdll.RtlDeleteFunctionTable
@ stdcall RtlFillMemory(ptr long long) ntdll.RtlFillMemory
@ stdcall -arch=x86_64 RtlLookupFunctionEntry(long ptr ptr) ntdll.RtlLookupFunctionEntry
@ stdcall RtlMoveMemory(ptr ptr long) ntdll.RtlMoveMemory
...
...
dlls/ntdll/ntdll.spec
View file @
df7f4fb7
...
...
@@ -409,7 +409,7 @@
# @ stub RtlAddAuditAccessObjectAce
# @ stub RtlAddCompoundAce
# @ stub RtlAddRange
@ cdecl -arch=x86_64 RtlAddFunctionTable(ptr long long)
@ cdecl -arch=
arm,
x86_64 RtlAddFunctionTable(ptr long long)
@ stdcall RtlAddRefActivationContext(ptr)
# @ stub RtlAddRefMemoryStream
@ stdcall RtlAddVectoredExceptionHandler(long ptr)
...
...
@@ -515,7 +515,7 @@
@ stdcall RtlDeleteCriticalSection(ptr)
@ stub RtlDeleteElementGenericTable
@ stub RtlDeleteElementGenericTableAvl
@ cdecl -arch=x86_64 RtlDeleteFunctionTable(ptr)
@ cdecl -arch=
arm,
x86_64 RtlDeleteFunctionTable(ptr)
@ stub RtlDeleteNoSplay
@ stub RtlDeleteOwnersRanges
@ stub RtlDeleteRange
...
...
dlls/ntdll/signal_arm.c
View file @
df7f4fb7
...
...
@@ -913,6 +913,26 @@ void __wine_enter_vm86( CONTEXT *context )
MESSAGE
(
"vm86 mode not supported on this platform
\n
"
);
}
/**********************************************************************
* RtlAddFunctionTable (NTDLL.@)
*/
BOOLEAN
CDECL
RtlAddFunctionTable
(
RUNTIME_FUNCTION
*
table
,
DWORD
count
,
DWORD
addr
)
{
FIXME
(
"%p %u %x: stub
\n
"
,
table
,
count
,
addr
);
return
TRUE
;
}
/**********************************************************************
* RtlDeleteFunctionTable (NTDLL.@)
*/
BOOLEAN
CDECL
RtlDeleteFunctionTable
(
RUNTIME_FUNCTION
*
table
)
{
FIXME
(
"%p: stub
\n
"
,
table
);
return
TRUE
;
}
/***********************************************************************
* RtlUnwind (NTDLL.@)
*/
...
...
include/winnt.h
View file @
df7f4fb7
...
...
@@ -1708,6 +1708,9 @@ typedef struct _CONTEXT {
ULONG
Cpsr
;
}
CONTEXT
;
BOOLEAN
CDECL
RtlAddFunctionTable
(
RUNTIME_FUNCTION
*
,
DWORD
,
DWORD
);
BOOLEAN
CDECL
RtlDeleteFunctionTable
(
RUNTIME_FUNCTION
*
);
#endif
/* __arm__ */
#ifdef __aarch64__
...
...
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