Added stub for _setjmp3().
Implemented _sopen().
This commit is contained in:
parent
8b21b6b33a
commit
03df00e925
@ -232,6 +232,15 @@ int __cdecl MSVCRT__setjmp(LPDWORD *jmpbuf)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*******************************************************************
|
||||||
|
* _setjmp3 (MSVCRT.@)
|
||||||
|
*/
|
||||||
|
int __cdecl MSVCRT__setjmp3(LPDWORD *jmpbuf, int x)
|
||||||
|
{
|
||||||
|
FIXME(":(%p %x): stub\n",jmpbuf,x);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* longjmp (MSVCRT.@)
|
* longjmp (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
|
@ -890,6 +890,14 @@ int __cdecl MSVCRT__wopen(const WCHAR *path,int flags)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* _sopen (MSVCRT.@)
|
||||||
|
*/
|
||||||
|
int __cdecl MSVCRT__sopen(const char *path,int oflags,int shflags)
|
||||||
|
{
|
||||||
|
return MSVCRT__open(path, oflags | shflags);
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* _creat (MSVCRT.@)
|
* _creat (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
|
@ -432,7 +432,7 @@ debug_channels (msvcrt)
|
|||||||
@ stub _set_sbh_threshold #(long)
|
@ stub _set_sbh_threshold #(long)
|
||||||
@ stub _seterrormode #(long)
|
@ stub _seterrormode #(long)
|
||||||
@ cdecl _setjmp(ptr) MSVCRT__setjmp
|
@ cdecl _setjmp(ptr) MSVCRT__setjmp
|
||||||
@ stub _setjmp3
|
@ cdecl _setjmp3(ptr long) MSVCRT__setjmp3
|
||||||
@ stub _setmaxstdio #(long)
|
@ stub _setmaxstdio #(long)
|
||||||
@ cdecl _setmbcp(long) MSVCRT__setmbcp
|
@ cdecl _setmbcp(long) MSVCRT__setmbcp
|
||||||
@ cdecl _setmode(long long) MSVCRT__setmode
|
@ cdecl _setmode(long long) MSVCRT__setmode
|
||||||
@ -440,7 +440,7 @@ debug_channels (msvcrt)
|
|||||||
@ cdecl _sleep(long) MSVCRT__sleep
|
@ cdecl _sleep(long) MSVCRT__sleep
|
||||||
@ varargs _snprintf(str long str) snprintf
|
@ varargs _snprintf(str long str) snprintf
|
||||||
@ forward -noimport _snwprintf ntdll._snwprintf
|
@ forward -noimport _snwprintf ntdll._snwprintf
|
||||||
@ stub _sopen
|
@ cdecl _sopen(str long long) MSVCRT__sopen
|
||||||
@ stub _spawnl #(str str) varargs
|
@ stub _spawnl #(str str) varargs
|
||||||
@ stub _spawnle #(str str) varargs
|
@ stub _spawnle #(str str) varargs
|
||||||
@ stub _spawnlp #(str str) varargs
|
@ stub _spawnlp #(str str) varargs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user