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
Sam Joan Roque-Worcel
wine
Commits
973cc740
Commit
973cc740
authored
24 years ago
by
Andreas Mohr
Committed by
Alexandre Julliard
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
"implemented" GetSystemTimeAdjustment.
parent
2f245af0
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
dlls/kernel/kernel32.spec
+1
-1
1 addition, 1 deletion
dlls/kernel/kernel32.spec
win32/time.c
+15
-0
15 additions, 0 deletions
win32/time.c
with
16 additions
and
1 deletion
dlls/kernel/kernel32.spec
+
1
−
1
View file @
973cc740
...
...
@@ -423,7 +423,7 @@ import ntdll.dll
404 stdcall GetSystemInfo(ptr) GetSystemInfo
405 stdcall GetSystemPowerStatus(ptr) GetSystemPowerStatus
406 stdcall GetSystemTime(ptr) GetSystemTime
407 st
ub
GetSystemTimeAdjustment
407 st
dcall GetSystemTimeAdjustment(ptr ptr ptr)
GetSystemTimeAdjustment
408 stdcall GetSystemTimeAsFileTime(ptr) GetSystemTimeAsFileTime
409 stdcall GetTapeParameters(ptr long ptr ptr) GetTapeParameters
410 stdcall GetTapePosition(ptr long ptr ptr ptr) GetTapePosition
...
...
This diff is collapsed.
Click to expand it.
win32/time.c
+
15
−
0
View file @
973cc740
...
...
@@ -99,6 +99,21 @@ BOOL WINAPI SetLocalTime(const SYSTEMTIME *systime)
}
/***********************************************************************
* GetSystemTimeAdjustment (KERNEL32.407)
*
*/
DWORD
WINAPI
GetSystemTimeAdjustment
(
LPDWORD
lpTimeAdjustment
,
LPDWORD
lpTimeIncrement
,
LPBOOL
lpTimeAdjustmentDisabled
)
{
*
lpTimeAdjustment
=
0
;
*
lpTimeIncrement
=
0
;
*
lpTimeAdjustmentDisabled
=
TRUE
;
return
TRUE
;
}
/***********************************************************************
* GetSystemTime (KERNEL32.285)
*/
...
...
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