Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
catsout
wine
Commits
bada25d5
Commit
bada25d5
authored
25 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Fixed SetLocalTime prototype.
parent
89f079bf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/winbase.h
+4
-7
4 additions, 7 deletions
include/winbase.h
win32/time.c
+1
-1
1 addition, 1 deletion
win32/time.c
with
5 additions
and
8 deletions
include/winbase.h
+
4
−
7
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
Set
HandleInformation
(
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
Set
LocalTime
(
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)
...
...
This diff is collapsed.
Click to expand it.
win32/time.c
+
1
−
1
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
(
LP
SYSTEMTIME
systime
)
BOOL
WINAPI
SetLocalTime
(
const
SYSTEMTIME
*
systime
)
{
struct
timeval
tv
;
struct
tm
t
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment