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
d666143f
Commit
d666143f
authored
Aug 07, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Aug 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Detect current time zone settings.
parent
81fc89fa
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
time.c
dlls/kernel32/tests/time.c
+6
-0
time.c
dlls/ntdll/time.c
+0
-0
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/kernel32/tests/time.c
View file @
d666143f
...
...
@@ -246,6 +246,12 @@ static void test_GetTimeZoneInformation(void)
tz_id
=
GetTimeZoneInformation
(
&
tzinfo
);
ok
(
tz_id
!=
TIME_ZONE_ID_INVALID
,
"GetTimeZoneInformation failed
\n
"
);
trace
(
"tz_id %u (%s)
\n
"
,
tz_id
,
tz_id
==
TIME_ZONE_ID_DAYLIGHT
?
"TIME_ZONE_ID_DAYLIGHT"
:
(
tz_id
==
TIME_ZONE_ID_STANDARD
?
"TIME_ZONE_ID_STANDARD"
:
(
tz_id
==
TIME_ZONE_ID_UNKNOWN
?
"TIME_ZONE_ID_UNKNOWN"
:
"TIME_ZONE_ID_INVALID"
)));
trace
(
"bias %d
\n
"
,
tzinfo
.
Bias
);
trace
(
"standard (d/m/y): %u/%02u/%04u day of week %u %u:%02u:%02u.%03u bias %d
\n
"
,
tzinfo
.
StandardDate
.
wDay
,
tzinfo
.
StandardDate
.
wMonth
,
...
...
dlls/ntdll/time.c
View file @
d666143f
This diff is collapsed.
Click to expand it.
include/winternl.h
View file @
d666143f
...
...
@@ -2278,6 +2278,7 @@ NTSTATUS WINAPI RtlWalkHeap(HANDLE,PVOID);
NTSTATUS
WINAPI
RtlWriteRegistryValue
(
ULONG
,
PCWSTR
,
PCWSTR
,
ULONG
,
PVOID
,
ULONG
);
NTSTATUS
WINAPI
RtlpNtCreateKey
(
PHANDLE
,
ACCESS_MASK
,
const
OBJECT_ATTRIBUTES
*
,
ULONG
,
const
UNICODE_STRING
*
,
ULONG
,
PULONG
);
NTSTATUS
WINAPI
RtlpNtEnumerateSubKey
(
HANDLE
,
UNICODE_STRING
*
,
ULONG
);
NTSTATUS
WINAPI
RtlpWaitForCriticalSection
(
RTL_CRITICAL_SECTION
*
);
NTSTATUS
WINAPI
RtlpUnWaitCriticalSection
(
RTL_CRITICAL_SECTION
*
);
...
...
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