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
1005f3a6
Commit
1005f3a6
authored
Dec 11, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Dec 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Make GetTickCount and GetTickCount64 hotpatchable.
parent
e63b0a0a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
kernel_main.c
dlls/kernel32/kernel_main.c
+2
-2
No files found.
dlls/kernel32/kernel_main.c
View file @
1005f3a6
...
...
@@ -179,7 +179,7 @@ INT WINAPI MulDiv( INT nMultiplicand, INT nMultiplier, INT nDivisor)
/******************************************************************************
* GetTickCount64 (KERNEL32.@)
*/
ULONGLONG
WINAPI
GetTickCount64
(
void
)
ULONGLONG
WINAPI
DECLSPEC_HOTPATCH
GetTickCount64
(
void
)
{
LARGE_INTEGER
counter
,
frequency
;
...
...
@@ -202,7 +202,7 @@ ULONGLONG WINAPI GetTickCount64(void)
* NOTES
* The value returned will wrap around every 2^32 milliseconds.
*/
DWORD
WINAPI
GetTickCount
(
void
)
DWORD
WINAPI
DECLSPEC_HOTPATCH
GetTickCount
(
void
)
{
return
GetTickCount64
();
}
...
...
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