Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
539b7b41
Commit
539b7b41
authored
25 years ago
by
Eric Kohl
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stub for _except_handler2().
parent
b694b006
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
misc/crtdll.c
+8
-0
8 additions, 0 deletions
misc/crtdll.c
relay32/crtdll.spec
+1
-1
1 addition, 1 deletion
relay32/crtdll.spec
with
9 additions
and
1 deletion
misc/crtdll.c
+
8
−
0
View file @
539b7b41
...
...
@@ -2191,3 +2191,11 @@ LPSTR __cdecl CRTDLL__strtime (LPSTR date)
{
FIXME
(
"%p stub
\n
"
,
date
);
return
0
;
}
/*********************************************************************
* _except_handler2 (CRTDLL.78)
*/
INT
__cdecl
CRTDLL__except_handler2
(
void
*
a0
,
void
*
a1
,
void
*
a2
,
void
*
a3
)
{
FIXME
(
"%p %p %p %p stub
\n
"
,
a0
,
a1
,
a2
,
a3
);
return
0
;
}
This diff is collapsed.
Click to expand it.
relay32/crtdll.spec
+
1
−
1
View file @
539b7b41
...
...
@@ -80,7 +80,7 @@ init CRTDLL_Init
75 extern _environ_dll CRTDLL_environ_dll
76 stub _eof
77 cdecl _errno() CRTDLL__errno
78
stub
_except_handler2
78
cdecl _except_handler2(ptr ptr ptr ptr) CRTDLL_
_except_handler2
79 stub _execl
80 stub _execle
81 stub _execlp
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment