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
8eec66b2
Commit
8eec66b2
authored
Nov 12, 1999
by
Bernd Paysan
Committed by
Alexandre Julliard
Nov 12, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a stub for setjmp.
parent
15ed9616
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
crtdll.spec
dlls/crtdll/crtdll.spec
+1
-1
crtdll_main.c
dlls/crtdll/crtdll_main.c
+8
-0
No files found.
dlls/crtdll/crtdll.spec
View file @
8eec66b2
...
...
@@ -266,7 +266,7 @@ init CRTDLL_Init
261 stub _scalb
262 stub _searchenv
263 stub _seterrormode
264
stub
_setjmp
264
cdecl _setjmp (ptr) CRTDLL_
_setjmp
265 cdecl _setmode(long long) CRTDLL__setmode
266 stub _setsystime
267 cdecl _sleep(long) CRTDLL__sleep
...
...
dlls/crtdll/crtdll_main.c
View file @
8eec66b2
...
...
@@ -304,6 +304,14 @@ void __cdecl CRTDLL__local_unwind2( PEXCEPTION_FRAME endframe, DWORD nr )
{
TRACE
(
"(%p,%ld)
\n
"
,
endframe
,
nr
);
}
/*******************************************************************
* _setjmp (CRTDLL.264)
*/
INT
__cdecl
CRTDLL__setjmp
(
LPDWORD
*
jmpbuf
)
{
FIXME
(
":(%p): stub
\n
"
,
jmpbuf
);
return
0
;
}
/*********************************************************************
* _read (CRTDLL.256)
*
...
...
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