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
d8454f92
Commit
d8454f92
authored
Feb 02, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Remove support for vm86 exceptions.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
39b1384e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
17 deletions
+0
-17
except.c
dlls/kernel32/except.c
+0
-10
exception.h
include/wine/exception.h
+0
-7
No files found.
dlls/kernel32/except.c
View file @
d8454f92
...
...
@@ -143,16 +143,6 @@ static int format_exception_msg( const EXCEPTION_POINTERS *ptr, char *buffer, in
case
EXCEPTION_WINE_ASSERTION
:
len
=
snprintf
(
buffer
,
size
,
"Assertion failed"
);
break
;
case
EXCEPTION_VM86_INTx
:
len
=
snprintf
(
buffer
,
size
,
"Unhandled interrupt %02lx in vm86 mode"
,
rec
->
ExceptionInformation
[
0
]);
break
;
case
EXCEPTION_VM86_STI
:
len
=
snprintf
(
buffer
,
size
,
"Unhandled sti in vm86 mode"
);
break
;
case
EXCEPTION_VM86_PICRETURN
:
len
=
snprintf
(
buffer
,
size
,
"Unhandled PIC return in vm86 mode"
);
break
;
default:
len
=
snprintf
(
buffer
,
size
,
"Unhandled exception 0x%08x in thread %x"
,
rec
->
ExceptionCode
,
GetCurrentThreadId
());
break
;
...
...
include/wine/exception.h
View file @
d8454f92
...
...
@@ -303,13 +303,6 @@ static inline EXCEPTION_REGISTRATION_RECORD *__wine_get_frame(void)
#define EXCEPTION_WINE_STUB 0x80000100
/* stub entry point called */
#define EXCEPTION_WINE_ASSERTION 0x80000101
/* assertion failed */
/* unhandled return status from vm86 mode */
#define EXCEPTION_VM86_INTx 0x80000110
#define EXCEPTION_VM86_STI 0x80000111
#define EXCEPTION_VM86_PICRETURN 0x80000112
extern
void
__wine_enter_vm86
(
CONTEXT
*
context
);
#ifdef __cplusplus
}
#endif
...
...
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