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
bce8b677
Commit
bce8b677
authored
Feb 13, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add prototypes for [GS]etDynamicTimeZoneInformation().
parent
c68745c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
winbase.h
include/winbase.h
+15
-0
No files found.
include/winbase.h
View file @
bce8b677
...
...
@@ -605,6 +605,19 @@ typedef struct _PROCESS_INFORMATION{
DWORD
dwThreadId
;
}
PROCESS_INFORMATION
,
*
PPROCESS_INFORMATION
,
*
LPPROCESS_INFORMATION
;
typedef
struct
_TIME_DYNAMIC_ZONE_INFORMATION
{
LONG
Bias
;
WCHAR
StandardName
[
32
];
SYSTEMTIME
StandardDate
;
LONG
StandardBias
;
WCHAR
DaylightName
[
32
];
SYSTEMTIME
DaylightDate
;
LONG
DaylightBias
;
WCHAR
TimeZoneKeyName
[
128
];
BOOLEAN
DynamicDaylightTimeDisabled
;
}
DYNAMIC_TIME_ZONE_INFORMATION
,
*
PDYNAMIC_TIME_ZONE_INFORMATION
;
typedef
struct
_TIME_ZONE_INFORMATION
{
LONG
Bias
;
WCHAR
StandardName
[
32
];
...
...
@@ -1553,6 +1566,7 @@ WINBASEAPI DWORD WINAPI GetDllDirectoryW(DWORD,LPWSTR);
WINBASEAPI
UINT
WINAPI
GetDriveTypeA
(
LPCSTR
);
WINBASEAPI
UINT
WINAPI
GetDriveTypeW
(
LPCWSTR
);
#define GetDriveType WINELIB_NAME_AW(GetDriveType)
WINBASEAPI
DWORD
WINAPI
GetDynamicTimeZoneInformation
(
PDYNAMIC_TIME_ZONE_INFORMATION
);
WINBASEAPI
LPSTR
WINAPI
GetEnvironmentStringsA
(
void
);
WINBASEAPI
LPWSTR
WINAPI
GetEnvironmentStringsW
(
void
);
#define GetEnvironmentStrings WINELIB_NAME_AW(GetEnvironmentStrings)
...
...
@@ -1964,6 +1978,7 @@ WINBASEAPI BOOL WINAPI SetDefaultCommConfigW(LPCWSTR,LPCOMMCONFIG,DWORD);
WINBASEAPI
BOOL
WINAPI
SetDllDirectoryA
(
LPCSTR
);
WINBASEAPI
BOOL
WINAPI
SetDllDirectoryW
(
LPCWSTR
);
#define SetDllDirectory WINELIB_NAME_AW(SetDllDirectory)
WINBASEAPI
BOOL
WINAPI
SetDynamicTimeZoneInformation
(
CONST
DYNAMIC_TIME_ZONE_INFORMATION
*
);
WINBASEAPI
BOOL
WINAPI
SetEndOfFile
(
HANDLE
);
WINBASEAPI
BOOL
WINAPI
SetEnvironmentVariableA
(
LPCSTR
,
LPCSTR
);
WINBASEAPI
BOOL
WINAPI
SetEnvironmentVariableW
(
LPCWSTR
,
LPCWSTR
);
...
...
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