Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0e1b3815
Commit
0e1b3815
authored
Apr 03, 2014
by
Sebastian Lackner
Committed by
Alexandre Julliard
Apr 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Silence SetWaitableTimerEx fixme message.
parent
e8519994
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
sync.c
dlls/kernel32/sync.c
+6
-2
No files found.
dlls/kernel32/sync.c
View file @
0e1b3815
...
...
@@ -1183,8 +1183,12 @@ BOOL WINAPI SetWaitableTimer( HANDLE handle, const LARGE_INTEGER *when, LONG per
BOOL
WINAPI
SetWaitableTimerEx
(
HANDLE
handle
,
const
LARGE_INTEGER
*
when
,
LONG
period
,
PTIMERAPCROUTINE
callback
,
LPVOID
arg
,
REASON_CONTEXT
*
context
,
ULONG
tolerabledelay
)
{
FIXME
(
"(%p, %p, %d, %p, %p, %p, %d) semi-stub
\n
"
,
handle
,
when
,
period
,
callback
,
arg
,
context
,
tolerabledelay
);
static
int
once
;
if
(
!
once
++
)
{
FIXME
(
"(%p, %p, %d, %p, %p, %p, %d) semi-stub
\n
"
,
handle
,
when
,
period
,
callback
,
arg
,
context
,
tolerabledelay
);
}
return
SetWaitableTimer
(
handle
,
when
,
period
,
callback
,
arg
,
FALSE
);
}
...
...
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