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
c9109309
Commit
c9109309
authored
Dec 03, 2018
by
Alex Henrie
Committed by
Alexandre Julliard
Dec 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add RtlGrowFunctionTable stub.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
80991720
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
0 deletions
+27
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
signal_arm.c
dlls/ntdll/signal_arm.c
+8
-0
signal_arm64.c
dlls/ntdll/signal_arm64.c
+9
-0
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+9
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
c9109309
...
...
@@ -683,6 +683,7 @@
@ stdcall RtlGetUnloadEventTrace()
@ stub RtlGetUserInfoHeap
@ stdcall RtlGetVersion(ptr)
@ stdcall -arch=arm,arm64,x86_64 RtlGrowFunctionTable(ptr long)
@ stub RtlGuidToPropertySetName
@ stdcall RtlHashUnicodeString(ptr long long ptr)
@ stdcall RtlIdentifierAuthoritySid(ptr)
...
...
dlls/ntdll/signal_arm.c
View file @
c9109309
...
...
@@ -1069,6 +1069,14 @@ DWORD WINAPI RtlAddGrowableFunctionTable( void **table, RUNTIME_FUNCTION *functi
return
S_OK
;
}
/*************************************************************************
* RtlGrowFunctionTable (NTDLL.@)
*/
void
WINAPI
RtlGrowFunctionTable
(
void
*
table
,
DWORD
count
)
{
FIXME
(
"(%p, %d) stub!
\n
"
,
table
,
count
);
}
/**********************************************************************
* RtlDeleteFunctionTable (NTDLL.@)
*/
...
...
dlls/ntdll/signal_arm64.c
View file @
c9109309
...
...
@@ -989,6 +989,15 @@ DWORD WINAPI RtlAddGrowableFunctionTable( void **table, RUNTIME_FUNCTION *functi
}
/*************************************************************************
* RtlGrowFunctionTable (NTDLL.@)
*/
void
WINAPI
RtlGrowFunctionTable
(
void
*
table
,
DWORD
count
)
{
FIXME
(
"(%p, %d) stub!
\n
"
,
table
,
count
);
}
/**********************************************************************
* RtlDeleteFunctionTable (NTDLL.@)
*/
...
...
dlls/ntdll/signal_x86_64.c
View file @
c9109309
...
...
@@ -3518,6 +3518,15 @@ DWORD WINAPI RtlAddGrowableFunctionTable( void **table, RUNTIME_FUNCTION *functi
}
/*************************************************************************
* RtlGrowFunctionTable (NTDLL.@)
*/
void
WINAPI
RtlGrowFunctionTable
(
void
*
table
,
DWORD
count
)
{
FIXME
(
"(%p, %d) stub!
\n
"
,
table
,
count
);
}
/**********************************************************************
* RtlDeleteFunctionTable (NTDLL.@)
*/
...
...
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