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
bada25d5
Commit
bada25d5
authored
Aug 08, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed SetLocalTime prototype.
parent
89f079bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
winbase.h
include/winbase.h
+4
-7
time.c
win32/time.c
+1
-1
No files found.
include/winbase.h
View file @
bada25d5
...
...
@@ -1493,10 +1493,10 @@ DWORD WINAPI SetFilePointer(HFILE,LONG,LPLONG,DWORD);
BOOL
WINAPI
SetFileSecurityA
(
LPCSTR
,
SECURITY_INFORMATION
,
PSECURITY_DESCRIPTOR
);
BOOL
WINAPI
SetFileSecurityW
(
LPCWSTR
,
SECURITY_INFORMATION
,
PSECURITY_DESCRIPTOR
);
#define SetFileSecurity WINELIB_NAME_AW(SetFileSecurity)
BOOL
WINAPI
SetFileTime
(
HFILE
,
const
FILETIME
*
,
const
FILETIME
*
,
const
FILETIME
*
);
BOOL
WINAPI
SetHandleInformation
(
HANDLE
,
DWORD
,
DWORD
);
BOOL
WINAPI
SetPriorityClass
(
HANDLE
,
DWORD
);
BOOL
WINAPI
SetFileTime
(
HFILE
,
const
FILETIME
*
,
const
FILETIME
*
,
const
FILETIME
*
);
BOOL
WINAPI
SetHandleInformation
(
HANDLE
,
DWORD
,
DWORD
);
BOOL
WINAPI
SetLocalTime
(
const
SYSTEMTIME
*
);
BOOL
WINAPI
SetPriorityClass
(
HANDLE
,
DWORD
);
BOOL
WINAPI
SetSecurityDescriptorDacl
(
PSECURITY_DESCRIPTOR
,
BOOL
,
PACL
,
BOOL
);
BOOL
WINAPI
SetSecurityDescriptorGroup
(
PSECURITY_DESCRIPTOR
,
PSID
,
BOOL
);
BOOL
WINAPI
SetSecurityDescriptorOwner
(
PSECURITY_DESCRIPTOR
,
PSID
,
BOOL
);
...
...
@@ -1766,9 +1766,6 @@ BOOL WINAPI WriteProfileStringW(LPCWSTR,LPCWSTR,LPCWSTR);
LPSTR
WINAPI
lstrcatA
(
LPSTR
,
LPCSTR
);
LPWSTR
WINAPI
lstrcatW
(
LPWSTR
,
LPCWSTR
);
#define lstrcat WINELIB_NAME_AW(lstrcat)
LPSTR
WINAPI
lstrcatnA
(
LPSTR
,
LPCSTR
,
INT
);
LPWSTR
WINAPI
lstrcatnW
(
LPWSTR
,
LPCWSTR
,
INT
);
#define lstrcatn WINELIB_NAME_AW(lstrcatn)
LPSTR
WINAPI
lstrcpyA
(
LPSTR
,
LPCSTR
);
LPWSTR
WINAPI
lstrcpyW
(
LPWSTR
,
LPCWSTR
);
#define lstrcpy WINELIB_NAME_AW(lstrcpy)
...
...
win32/time.c
View file @
bada25d5
...
...
@@ -44,7 +44,7 @@ VOID WINAPI GetLocalTime(LPSYSTEMTIME systime)
* FIXME: correct ? Is the timezone param of settimeofday() needed ?
* I don't have any docu about SetLocal/SystemTime(), argl...
*/
VOID
WINAPI
SetLocalTime
(
LPSYSTEMTIME
systime
)
BOOL
WINAPI
SetLocalTime
(
const
SYSTEMTIME
*
systime
)
{
struct
timeval
tv
;
struct
tm
t
;
...
...
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