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
99fc289b
Commit
99fc289b
authored
Feb 01, 2023
by
Brendan Shanks
Committed by
Alexandre Julliard
Feb 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Partially implement QueryInterruptTimePrecise.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54338
parent
474e8e0d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
sync.c
dlls/kernelbase/sync.c
+12
-0
No files found.
dlls/kernelbase/kernelbase.spec
View file @
99fc289b
...
...
@@ -1235,7 +1235,7 @@
# @ stub QueryIdleProcessorCycleTime
# @ stub QueryIdleProcessorCycleTimeEx
@ stdcall QueryInterruptTime(ptr)
# @ stub QueryInterruptTimePrecise
@ stdcall QueryInterruptTimePrecise(ptr)
@ stdcall QueryMemoryResourceNotification(ptr ptr)
# @ stub QueryOptionalDelayLoadedAPI
@ stdcall QueryPerformanceCounter(ptr) ntdll.RtlQueryPerformanceCounter
...
...
dlls/kernelbase/sync.c
View file @
99fc289b
...
...
@@ -222,6 +222,18 @@ void WINAPI DECLSPEC_HOTPATCH QueryInterruptTime( ULONGLONG *time )
}
/******************************************************************************
* QueryInterruptTimePrecise (kernelbase.@)
*/
void
WINAPI
DECLSPEC_HOTPATCH
QueryInterruptTimePrecise
(
ULONGLONG
*
time
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
"(%p) semi-stub
\n
"
,
time
);
QueryInterruptTime
(
time
);
}
/***********************************************************************
* Waits
***********************************************************************/
...
...
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