msvcr120: Add stub for _SetWinRTOutOfMemoryExceptionCallback.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
32e65acc00
commit
0dde2b8a2f
|
@ -10,7 +10,7 @@
|
|||
@ stub _NLG_Return2
|
||||
@ stub _SetImageBase
|
||||
@ stub _SetThrowImageBase
|
||||
@ stub _SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl _SetWinRTOutOfMemoryExceptionCallback(ptr) ucrtbase._SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl __AdjustPointer(ptr ptr) ucrtbase.__AdjustPointer
|
||||
@ stub __BuildCatchObject
|
||||
@ stub __BuildCatchObjectHelper
|
||||
|
|
|
@ -844,7 +844,7 @@
|
|||
@ stub -arch=i386 _NLG_Return
|
||||
@ stub -arch=i386 _NLG_Return2
|
||||
@ stub -arch=arm,win64 __NLG_Return2
|
||||
@ stub _SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl _SetWinRTOutOfMemoryExceptionCallback(ptr) MSVCR120__SetWinRTOutOfMemoryExceptionCallback
|
||||
@ stub -arch=win64 _SetImageBase
|
||||
@ stub -arch=win64 _SetThrowImageBase
|
||||
@ cdecl _Strftime(ptr long str ptr ptr)
|
||||
|
|
|
@ -838,7 +838,7 @@
|
|||
@ stub -arch=i386 _NLG_Return
|
||||
@ stub -arch=i386 _NLG_Return2
|
||||
@ stub -arch=arm,win64 __NLG_Return2
|
||||
@ stub _SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl _SetWinRTOutOfMemoryExceptionCallback(ptr) msvcr120._SetWinRTOutOfMemoryExceptionCallback
|
||||
@ stub -arch=win64 _SetImageBase
|
||||
@ stub -arch=win64 _SetThrowImageBase
|
||||
@ cdecl _Strftime(ptr long str ptr ptr) msvcr120._Strftime
|
||||
|
|
|
@ -580,4 +580,12 @@ void CDECL MSVCRT__crtSleep(DWORD timeout)
|
|||
TRACE("(%u)\n", timeout);
|
||||
Sleep(timeout);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _SetWinRTOutOfMemoryExceptionCallback (MSVCR120.@)
|
||||
*/
|
||||
void CDECL MSVCR120__SetWinRTOutOfMemoryExceptionCallback(void *callback)
|
||||
{
|
||||
FIXME("(%p): stub\n", callback);
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
@ stub _NLG_Dispatch2
|
||||
@ stub _NLG_Return
|
||||
@ stub _NLG_Return2
|
||||
@ stub _SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl _SetWinRTOutOfMemoryExceptionCallback(ptr) MSVCR120__SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl _Strftime(ptr long str ptr ptr)
|
||||
@ cdecl _W_Getdays()
|
||||
@ cdecl _W_Getmonths()
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
@ stub _NLG_Dispatch2
|
||||
@ stub _NLG_Return
|
||||
@ stub _NLG_Return2
|
||||
@ stub _SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl _SetWinRTOutOfMemoryExceptionCallback(ptr) ucrtbase._SetWinRTOutOfMemoryExceptionCallback
|
||||
@ cdecl __AdjustPointer(ptr ptr) ucrtbase.__AdjustPointer
|
||||
@ stub __BuildCatchObject
|
||||
@ stub __BuildCatchObjectHelper
|
||||
|
|
Loading…
Reference in New Issue