Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2d7fa5f2
Commit
2d7fa5f2
authored
Apr 05, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr90: Added _CRT_RTC_INIT and _CRT_RTC_INITW implementation.
parent
d09ab74d
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
8 deletions
+26
-8
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+2
-2
msvcr70.spec
dlls/msvcr70/msvcr70.spec
+1
-1
msvcr71.spec
dlls/msvcr71/msvcr71.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+2
-2
msvcr90.c
dlls/msvcr90/msvcr90.c
+18
-0
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+2
-2
No files found.
dlls/msvcr100/msvcr100.spec
View file @
2d7fa5f2
...
...
@@ -334,8 +334,8 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@
stub
_CRT_RTC_INIT
@
stub
_CRT_RTC_INITW
@
cdecl _CRT_RTC_INIT(ptr ptr long long long) msvcr90.
_CRT_RTC_INIT
@
cdecl _CRT_RTC_INITW(ptr ptr long long long) msvcr90.
_CRT_RTC_INITW
@ stub _CreateFrameInfo
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
...
...
dlls/msvcr70/msvcr70.spec
View file @
2d7fa5f2
...
...
@@ -107,7 +107,7 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan
@ 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 -i386 -norelay _EH_prolog() msvcrt._EH_prolog
@ cdecl _Getdays() msvcrt._Getdays
...
...
dlls/msvcr71/msvcr71.spec
View file @
2d7fa5f2
...
...
@@ -101,7 +101,7 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan
@ 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 -i386 _EH_prolog() msvcrt._EH_prolog
@ cdecl _Getdays() msvcrt._Getdays
...
...
dlls/msvcr80/msvcr80.spec
View file @
2d7fa5f2
...
...
@@ -145,8 +145,8 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@
stub
_CRT_RTC_INIT
@
stub
_CRT_RTC_INITW
@
cdecl _CRT_RTC_INIT(ptr ptr long long long) msvcr90.
_CRT_RTC_INIT
@
cdecl _CRT_RTC_INITW(ptr ptr long long long) msvcr90.
_CRT_RTC_INITW
@ stub _CreateFrameInfo
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
...
...
dlls/msvcr90/msvcr90.c
View file @
2d7fa5f2
...
...
@@ -338,3 +338,21 @@ const char * __thiscall MSVCRT_type_info_name_internal_method(type_info * _this,
TRACE
(
"(%p) returning %s
\n
"
,
_this
,
_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
;
}
dlls/msvcr90/msvcr90.spec
View file @
2d7fa5f2
...
...
@@ -142,8 +142,8 @@
@ cdecl -arch=i386 _CIsqrt() msvcrt._CIsqrt
@ cdecl -arch=i386 _CItan() msvcrt._CItan
@ cdecl -arch=i386 _CItanh() msvcrt._CItanh
@
stub _CRT_RTC_INIT
@
stub _CRT_RTC_INITW
@
cdecl _CRT_RTC_INIT(ptr ptr long long long)
@
cdecl _CRT_RTC_INITW(ptr ptr long long long)
@ stub _CreateFrameInfo
@ cdecl _CxxThrowException(long long) msvcrt._CxxThrowException
@ cdecl -i386 -norelay _EH_prolog() msvcrt._EH_prolog
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment