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
50987774
Commit
50987774
authored
May 06, 2022
by
Brendan Shanks
Committed by
Alexandre Julliard
May 23, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Add RaiseFailFastException stub.
Signed-off-by:
Brendan Shanks
<
bshanks@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
63f9a082
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
debug.c
dlls/kernelbase/debug.c
+8
-0
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
No files found.
dlls/kernel32/kernel32.spec
View file @
50987774
...
...
@@ -1197,7 +1197,7 @@
@ stdcall -import QueueUserAPC(ptr long long)
@ stdcall -import QueueUserWorkItem(ptr ptr long)
@ stdcall -import RaiseException(long long long ptr)
# @ stub RaiseFailFastException
@ stdcall -import RaiseFailFastException(ptr ptr long)
@ stdcall -import ReadConsoleA(long ptr long ptr ptr)
@ stdcall -import ReadConsoleInputA(long ptr long ptr)
@ stub ReadConsoleInputExA
...
...
dlls/kernelbase/debug.c
View file @
50987774
...
...
@@ -303,6 +303,14 @@ void WINAPI DECLSPEC_HOTPATCH RaiseException( DWORD code, DWORD flags, DWORD cou
}
__ASM_STDCALL_IMPORT
(
RaiseException
,
16
)
/*******************************************************************
* RaiseFailFastException (kernelbase.@)
*/
void
WINAPI
DECLSPEC_HOTPATCH
RaiseFailFastException
(
EXCEPTION_RECORD
*
record
,
CONTEXT
*
context
,
DWORD
flags
)
{
FIXME
(
"(%p, %p, %ld) stub
\n
"
,
record
,
context
,
flags
);
TerminateProcess
(
GetCurrentProcess
(),
STATUS_FAIL_FAST_EXCEPTION
);
}
/***********************************************************************
* SetUnhandledExceptionFilter (kernelbase.@)
...
...
dlls/kernelbase/kernelbase.spec
View file @
50987774
...
...
@@ -1264,7 +1264,7 @@
# @ stub QuirkIsEnabledForPackage4
# @ stub QuirkIsEnabledForProcess
@ stdcall RaiseException(long long long ptr)
# @ stub RaiseFailFastException
@ stdcall RaiseFailFastException(ptr ptr long)
@ stdcall ReOpenFile(ptr long long long)
@ stdcall ReadConsoleA(long ptr long ptr ptr)
@ stdcall ReadConsoleInputA(long ptr long ptr)
...
...
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