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
03df00e9
Commit
03df00e9
authored
Mar 19, 2001
by
Eric Kohl
Committed by
Alexandre Julliard
Mar 19, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for _setjmp3().
Implemented _sopen().
parent
8b21b6b3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
except.c
dlls/msvcrt/except.c
+9
-0
file.c
dlls/msvcrt/file.c
+8
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-2
No files found.
dlls/msvcrt/except.c
View file @
03df00e9
...
...
@@ -232,6 +232,15 @@ int __cdecl MSVCRT__setjmp(LPDWORD *jmpbuf)
return
0
;
}
/*******************************************************************
* _setjmp3 (MSVCRT.@)
*/
int
__cdecl
MSVCRT__setjmp3
(
LPDWORD
*
jmpbuf
,
int
x
)
{
FIXME
(
":(%p %x): stub
\n
"
,
jmpbuf
,
x
);
return
0
;
}
/*********************************************************************
* longjmp (MSVCRT.@)
*/
...
...
dlls/msvcrt/file.c
View file @
03df00e9
...
...
@@ -891,6 +891,14 @@ int __cdecl MSVCRT__wopen(const WCHAR *path,int flags)
}
/*********************************************************************
* _sopen (MSVCRT.@)
*/
int
__cdecl
MSVCRT__sopen
(
const
char
*
path
,
int
oflags
,
int
shflags
)
{
return
MSVCRT__open
(
path
,
oflags
|
shflags
);
}
/*********************************************************************
* _creat (MSVCRT.@)
*/
int
__cdecl
MSVCRT__creat
(
const
char
*
path
,
int
flags
)
...
...
dlls/msvcrt/msvcrt.spec
View file @
03df00e9
...
...
@@ -432,7 +432,7 @@ debug_channels (msvcrt)
@ stub _set_sbh_threshold #(long)
@ stub _seterrormode #(long)
@ cdecl _setjmp(ptr) MSVCRT__setjmp
@
stub
_setjmp3
@
cdecl _setjmp3(ptr long) MSVCRT_
_setjmp3
@ stub _setmaxstdio #(long)
@ cdecl _setmbcp(long) MSVCRT__setmbcp
@ cdecl _setmode(long long) MSVCRT__setmode
...
...
@@ -440,7 +440,7 @@ debug_channels (msvcrt)
@ cdecl _sleep(long) MSVCRT__sleep
@ varargs _snprintf(str long str) snprintf
@ forward -noimport _snwprintf ntdll._snwprintf
@
stub
_sopen
@
cdecl _sopen(str long long) MSVCRT_
_sopen
@ stub _spawnl #(str str) varargs
@ stub _spawnle #(str str) varargs
@ stub _spawnlp #(str str) varargs
...
...
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