Commit 2d7fa5f2 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcr90: Added _CRT_RTC_INIT and _CRT_RTC_INITW implementation.

parent d09ab74d
...@@ -334,8 +334,8 @@ ...@@ -334,8 +334,8 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt @ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan @ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh @ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@ stub _CRT_RTC_INIT @ cdecl _CRT_RTC_INIT(ptr ptr long long long) msvcr90._CRT_RTC_INIT
@ stub _CRT_RTC_INITW @ cdecl _CRT_RTC_INITW(ptr ptr long long long) msvcr90._CRT_RTC_INITW
@ stub _CreateFrameInfo @ stub _CreateFrameInfo
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException @ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog @ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
......
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt @ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan @ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh @ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@ stub _CRT_RTC_INIT @ cdecl _CRT_RTC_INIT(ptr ptr long long long) msvcr90._CRT_RTC_INIT
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException @ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog @ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
@ cdecl _Getdays() msvcrt._Getdays @ cdecl _Getdays() msvcrt._Getdays
......
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt @ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan @ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh @ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@ stub _CRT_RTC_INIT @ cdecl _CRT_RTC_INIT(ptr ptr long long long) msvcr90._CRT_RTC_INIT
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException @ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 _EH_prolog() msvcrt._EH_prolog @ cdecl -i386 _EH_prolog() msvcrt._EH_prolog
@ cdecl _Getdays() msvcrt._Getdays @ cdecl _Getdays() msvcrt._Getdays
......
...@@ -145,8 +145,8 @@ ...@@ -145,8 +145,8 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt @ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan @ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh @ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@ stub _CRT_RTC_INIT @ cdecl _CRT_RTC_INIT(ptr ptr long long long) msvcr90._CRT_RTC_INIT
@ stub _CRT_RTC_INITW @ cdecl _CRT_RTC_INITW(ptr ptr long long long) msvcr90._CRT_RTC_INITW
@ stub _CreateFrameInfo @ stub _CreateFrameInfo
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException @ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog @ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
......
...@@ -338,3 +338,21 @@ const char * __thiscall MSVCRT_type_info_name_internal_method(type_info * _this, ...@@ -338,3 +338,21 @@ const char * __thiscall MSVCRT_type_info_name_internal_method(type_info * _this,
TRACE("(%p) returning %s\n", _this, _this->name); TRACE("(%p) returning %s\n", _this, _this->name);
return _this->name; return _this->name;
} }
/*********************************************************************
* _CRT_RTC_INIT (MSVCR90.@)
*/
void* CDECL _CRT_RTC_INIT(void *unk1, void *unk2, int unk3, int unk4, int unk5)
{
TRACE("%p %p %x %x %x\n", unk1, unk2, unk3, unk4, unk5);
return NULL;
}
/*********************************************************************
* _CRT_RTC_INITW (MSVCR90.@)
*/
void* CDECL _CRT_RTC_INITW(void *unk1, void *unk2, int unk3, int unk4, int unk5)
{
TRACE("%p %p %x %x %x\n", unk1, unk2, unk3, unk4, unk5);
return NULL;
}
...@@ -142,8 +142,8 @@ ...@@ -142,8 +142,8 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt @ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan @ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh @ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@ stub _CRT_RTC_INIT @ cdecl _CRT_RTC_INIT(ptr ptr long long long)
@ stub _CRT_RTC_INITW @ cdecl _CRT_RTC_INITW(ptr ptr long long long)
@ stub _CreateFrameInfo @ stub _CreateFrameInfo
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException @ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog @ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
......
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