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
f6dae487
Commit
f6dae487
authored
Feb 15, 2012
by
William Panlener
Committed by
Alexandre Julliard
Feb 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Use success return values for stubs.
parent
b21baaeb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+2
-2
No files found.
dlls/ntdll/signal_x86_64.c
View file @
f6dae487
...
...
@@ -2511,7 +2511,7 @@ void signal_init_process(void)
BOOLEAN
CDECL
RtlAddFunctionTable
(
RUNTIME_FUNCTION
*
table
,
DWORD
count
,
DWORD64
addr
)
{
FIXME
(
"%p %u %lx: stub
\n
"
,
table
,
count
,
addr
);
return
FALS
E
;
return
TRU
E
;
}
...
...
@@ -2521,7 +2521,7 @@ BOOLEAN CDECL RtlAddFunctionTable( RUNTIME_FUNCTION *table, DWORD count, DWORD64
BOOLEAN
CDECL
RtlDeleteFunctionTable
(
RUNTIME_FUNCTION
*
table
)
{
FIXME
(
"%p: stub
\n
"
,
table
);
return
FALS
E
;
return
TRU
E
;
}
...
...
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