Added stub for _setjmp3().

Implemented _sopen().
This commit is contained in:
Eric Kohl 2001-03-19 19:13:40 +00:00 committed by Alexandre Julliard
parent 8b21b6b33a
commit 03df00e925
3 changed files with 19 additions and 2 deletions

View File

@ -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.@)
*/

View File

@ -890,6 +890,14 @@ int __cdecl MSVCRT__wopen(const WCHAR *path,int flags)
return -1;
}
/*********************************************************************
* _sopen (MSVCRT.@)
*/
int __cdecl MSVCRT__sopen(const char *path,int oflags,int shflags)
{
return MSVCRT__open(path, oflags | shflags);
}
/*********************************************************************
* _creat (MSVCRT.@)
*/

View File

@ -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