Commit 0dde2b8a authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

msvcr120: Add stub for _SetWinRTOutOfMemoryExceptionCallback.

parent 32e65acc
......@@ -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
......
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