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
545b40ad
Commit
545b40ad
authored
May 04, 2009
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Make SystemTimeToTzSpecificLocalTime and…
kernel32: Make SystemTimeToTzSpecificLocalTime and TzSpecificLocalTimeToSystemTime prototypes match PSDK.
parent
8a46d0ea
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
time.c
dlls/kernel32/time.c
+4
-4
winbase.h
include/winbase.h
+2
-2
No files found.
dlls/kernel32/time.c
View file @
545b40ad
...
...
@@ -443,8 +443,8 @@ BOOL WINAPI SetTimeZoneInformation( const TIME_ZONE_INFORMATION *tzinfo )
*/
BOOL
WINAPI
SystemTimeToTzSpecificLocalTime
(
LPTIME_ZONE_INFORMATION
lpTimeZoneInformation
,
LPSYSTEMTIME
lpUniversalTime
,
LPSYSTEMTIME
lpLocalTime
)
const
TIME_ZONE_INFORMATION
*
lpTimeZoneInformation
,
const
SYSTEMTIME
*
lpUniversalTime
,
LPSYSTEMTIME
lpLocalTime
)
{
FILETIME
ft
;
LONG
lBias
;
...
...
@@ -489,8 +489,8 @@ BOOL WINAPI SystemTimeToTzSpecificLocalTime(
* Failure: FALSE.
*/
BOOL
WINAPI
TzSpecificLocalTimeToSystemTime
(
LPTIME_ZONE_INFORMATION
lpTimeZoneInformation
,
LPSYSTEMTIME
lpLocalTime
,
LPSYSTEMTIME
lpUniversalTime
)
const
TIME_ZONE_INFORMATION
*
lpTimeZoneInformation
,
const
SYSTEMTIME
*
lpLocalTime
,
LPSYSTEMTIME
lpUniversalTime
)
{
FILETIME
ft
;
LONG
lBias
;
...
...
include/winbase.h
View file @
545b40ad
...
...
@@ -2098,7 +2098,7 @@ WINBASEAPI DWORD WINAPI SuspendThread(HANDLE);
WINBASEAPI
void
WINAPI
SwitchToFiber
(
LPVOID
);
WINBASEAPI
BOOL
WINAPI
SwitchToThread
(
void
);
WINBASEAPI
BOOL
WINAPI
SystemTimeToFileTime
(
const
SYSTEMTIME
*
,
LPFILETIME
);
WINBASEAPI
BOOL
WINAPI
SystemTimeToTzSpecificLocalTime
(
LPTIME_ZONE_INFORMATION
,
LPSYSTEMTIME
,
LPSYSTEMTIME
);
WINBASEAPI
BOOL
WINAPI
SystemTimeToTzSpecificLocalTime
(
const
TIME_ZONE_INFORMATION
*
,
const
SYSTEMTIME
*
,
LPSYSTEMTIME
);
WINBASEAPI
BOOL
WINAPI
TerminateJobObject
(
HANDLE
,
UINT
);
WINBASEAPI
BOOL
WINAPI
TerminateProcess
(
HANDLE
,
DWORD
);
WINBASEAPI
BOOL
WINAPI
TerminateThread
(
HANDLE
,
DWORD
);
...
...
@@ -2109,7 +2109,7 @@ WINBASEAPI BOOL WINAPI TlsSetValue(DWORD,LPVOID);
WINBASEAPI
BOOL
WINAPI
TransactNamedPipe
(
HANDLE
,
LPVOID
,
DWORD
,
LPVOID
,
DWORD
,
LPDWORD
,
LPOVERLAPPED
);
WINBASEAPI
BOOL
WINAPI
TransmitCommChar
(
HANDLE
,
CHAR
);
WINBASEAPI
BOOL
WINAPI
TryEnterCriticalSection
(
CRITICAL_SECTION
*
lpCrit
);
WINBASEAPI
BOOL
WINAPI
TzSpecificLocalTimeToSystemTime
(
LPTIME_ZONE_INFORMATION
,
LPSYSTEMTIME
,
LPSYSTEMTIME
);
WINBASEAPI
BOOL
WINAPI
TzSpecificLocalTimeToSystemTime
(
const
TIME_ZONE_INFORMATION
*
,
const
SYSTEMTIME
*
,
LPSYSTEMTIME
);
WINBASEAPI
LONG
WINAPI
UnhandledExceptionFilter
(
PEXCEPTION_POINTERS
);
WINBASEAPI
BOOL
WINAPI
UnlockFile
(
HANDLE
,
DWORD
,
DWORD
,
DWORD
,
DWORD
);
WINBASEAPI
BOOL
WINAPI
UnlockFileEx
(
HANDLE
,
DWORD
,
DWORD
,
DWORD
,
LPOVERLAPPED
);
...
...
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