Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e5348e27
Commit
e5348e27
authored
Jan 11, 2001
by
Jon Griffiths
Committed by
Alexandre Julliard
Jan 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added binary compatible __EH_prolog.
parent
558b6607
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
9 deletions
+18
-9
except.c
dlls/msvcrt/except.c
+17
-8
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/except.c
View file @
e5348e27
...
...
@@ -45,14 +45,6 @@ typedef struct _EXCEPTION_REGISTRATION
}
EXCEPTION_REGISTRATION
;
/*********************************************************************
* _EH_prolog (MSVCRT.@)
*/
void
__cdecl
MSVCRT__EH_prolog
(
void
)
{
FIXME
(
"stub
\n
"
);
}
/*********************************************************************
* _XcptFilter (MSVCRT.@)
*/
int
__cdecl
MSVCRT__XcptFilter
(
int
ex
,
PEXCEPTION_POINTERS
ptr
)
...
...
@@ -61,6 +53,23 @@ int __cdecl MSVCRT__XcptFilter(int ex, PEXCEPTION_POINTERS ptr)
return
UnhandledExceptionFilter
(
ptr
);
}
/*********************************************************************
* _EH_prolog (MSVCRT.@)
*/
#ifdef __i386__
/* Provided for VC++ binary compatability only */
__ASM_GLOBAL_FUNC
(
MSVCRT__EH_prolog
,
"pushl $0xff
\n\t
"
"pushl %eax
\n\t
"
"pushl %fs:0
\n\t
"
"movl %esp, %fs:0
\n\t
"
"movl 12(%esp), %eax
\n\t
"
"movl %ebp, 12(%esp)
\n\t
"
"leal 12(%esp), %ebp
\n\t
"
"pushl %eax
\n\t
"
"ret"
);
#endif
/*******************************************************************
* _global_unwind2 (MSVCRT.@)
*/
...
...
dlls/msvcrt/msvcrt.spec
View file @
e5348e27
...
...
@@ -74,7 +74,7 @@ debug_channels (msvcrt)
@ cdecl -noimport _CItan() MSVCRT__CItan
@ cdecl -noimport _CItanh() MSVCRT__CItanh
@ stub _CxxThrowException
@ cdecl
_EH_prolog() MSVCRT__EH_prolog # FIXME: crashes relay debuggin
g
@ cdecl
-i386 -norelay _EH_prolog() MSVCRT__EH_prolo
g
@ cdecl _Getdays() MSVCRT__Getdays
@ cdecl _Getmonths() MSVCRT__Getmonths
@ cdecl _Getnames() MSVCRT__Getnames
...
...
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