Commit 03df00e9 authored by Eric Kohl's avatar Eric Kohl Committed by Alexandre Julliard

Added stub for _setjmp3().

Implemented _sopen().
parent 8b21b6b3
......@@ -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.@)
*/
......
......@@ -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)
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment