Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c4d085bc
Commit
c4d085bc
authored
Dec 12, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr100: Added _get_timezone implementation.
parent
77306693
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
3 deletions
+14
-3
msvcr100.c
dlls/msvcr100/msvcr100.c
+11
-0
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.c
View file @
c4d085bc
...
@@ -473,6 +473,17 @@ int CDECL _sprintf_p(char *buffer, size_t length, const char *format, ...)
...
@@ -473,6 +473,17 @@ int CDECL _sprintf_p(char *buffer, size_t length, const char *format, ...)
}
}
/*********************************************************************
/*********************************************************************
* _get_timezone (MSVCR100.@)
*/
int
CDECL
_get_timezone
(
LONG
*
timezone
)
{
if
(
!
CHECK_PMT
(
timezone
!=
NULL
))
return
EINVAL
;
*
timezone
=
*
(
LONG
*
)
GetProcAddress
(
GetModuleHandleA
(
"msvcrt.dll"
),
"_timezone"
);
return
0
;
}
/*********************************************************************
* DllMain (MSVCR100.@)
* DllMain (MSVCR100.@)
*/
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hdll
,
DWORD
reason
,
LPVOID
reserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
hdll
,
DWORD
reason
,
LPVOID
reserved
)
...
...
dlls/msvcr100/msvcr100.spec
View file @
c4d085bc
...
@@ -877,7 +877,7 @@
...
@@ -877,7 +877,7 @@
@ cdecl _get_printf_count_output() msvcrt._get_printf_count_output
@ cdecl _get_printf_count_output() msvcrt._get_printf_count_output
@ stub _get_purecall_handler
@ stub _get_purecall_handler
@ cdecl _get_terminate() msvcrt._get_terminate
@ cdecl _get_terminate() msvcrt._get_terminate
@
stub _get_timezone
@
cdecl _get_timezone(ptr)
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ cdecl _get_unexpected() msvcrt._get_unexpected
@ cdecl _get_unexpected() msvcrt._get_unexpected
@ cdecl _get_wpgmptr(ptr) msvcrt._get_wpgmptr
@ cdecl _get_wpgmptr(ptr) msvcrt._get_wpgmptr
...
...
dlls/msvcr80/msvcr80.spec
View file @
c4d085bc
...
@@ -535,7 +535,7 @@
...
@@ -535,7 +535,7 @@
@ stub _get_purecall_handler
@ stub _get_purecall_handler
@ cdecl _get_sbh_threshold() msvcrt._get_sbh_threshold
@ cdecl _get_sbh_threshold() msvcrt._get_sbh_threshold
@ cdecl _get_terminate() msvcrt._get_terminate
@ cdecl _get_terminate() msvcrt._get_terminate
@
stub
_get_timezone
@
cdecl _get_timezone(ptr) msvcr100.
_get_timezone
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ cdecl _get_unexpected() msvcrt._get_unexpected
@ cdecl _get_unexpected() msvcrt._get_unexpected
@ stub _get_winmajor
@ stub _get_winmajor
...
...
dlls/msvcr90/msvcr90.spec
View file @
c4d085bc
...
@@ -528,7 +528,7 @@
...
@@ -528,7 +528,7 @@
@ stub _get_purecall_handler
@ stub _get_purecall_handler
@ cdecl _get_sbh_threshold() msvcrt._get_sbh_threshold
@ cdecl _get_sbh_threshold() msvcrt._get_sbh_threshold
@ cdecl _get_terminate() msvcrt._get_terminate
@ cdecl _get_terminate() msvcrt._get_terminate
@
stub
_get_timezone
@
cdecl _get_timezone(ptr) msvcr100.
_get_timezone
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ cdecl _get_tzname(ptr str long long) msvcrt._get_tzname
@ cdecl _get_unexpected() msvcrt._get_unexpected
@ cdecl _get_unexpected() msvcrt._get_unexpected
@ cdecl _get_wpgmptr(ptr) msvcrt._get_wpgmptr
@ cdecl _get_wpgmptr(ptr) msvcrt._get_wpgmptr
...
...
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