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
ecd76fb7
Commit
ecd76fb7
authored
Jul 21, 2008
by
Dan Hipschman
Committed by
Alexandre Julliard
Jul 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub for ChangeTimerQueueTimer.
parent
115b7492
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
sync.c
dlls/kernel32/sync.c
+19
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
ecd76fb7
...
...
@@ -179,7 +179,7 @@
@ stdcall CancelIo(long)
# @ stub CancelTimerQueueTimer
@ stdcall CancelWaitableTimer(long)
@ st
ub ChangeTimerQueueTimer
@ st
dcall ChangeTimerQueueTimer(ptr ptr long long)
# @ stub CheckNameLegalDOS8Dot3A
# @ stub CheckNameLegalDOS8Dot3W
@ stdcall CheckRemoteDebuggerPresent(long ptr)
...
...
dlls/kernel32/sync.c
View file @
ecd76fb7
...
...
@@ -1086,6 +1086,25 @@ BOOL WINAPI CreateTimerQueueTimer( PHANDLE phNewTimer, HANDLE TimerQueue,
}
/***********************************************************************
* ChangeTimerQueueTimer (KERNEL32.@)
*
* Changes the times at which the timer expires.
*
* RETURNS
* nonzero on success or zero on failure
*
* BUGS
* Unimplemented
*/
BOOL
WINAPI
ChangeTimerQueueTimer
(
HANDLE
TimerQueue
,
HANDLE
Timer
,
ULONG
DueTime
,
ULONG
Period
)
{
FIXME
(
"stub
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* DeleteTimerQueueTimer (KERNEL32.@)
*
* Cancels a timer-queue timer.
...
...
include/winbase.h
View file @
ecd76fb7
...
...
@@ -1312,6 +1312,7 @@ WINBASEAPI BOOL WINAPI CallNamedPipeW(LPCWSTR,LPVOID,DWORD,LPVOID,DWORD,L
#define CallNamedPipe WINELIB_NAME_AW(CallNamedPipe)
WINBASEAPI
BOOL
WINAPI
CancelIo
(
HANDLE
);
WINBASEAPI
BOOL
WINAPI
CancelWaitableTimer
(
HANDLE
);
WINBASEAPI
BOOL
WINAPI
ChangeTimerQueueTimer
(
HANDLE
,
HANDLE
,
ULONG
,
ULONG
);
WINADVAPI
BOOL
WINAPI
CheckTokenMembership
(
HANDLE
,
PSID
,
PBOOL
);
WINBASEAPI
BOOL
WINAPI
ClearCommBreak
(
HANDLE
);
WINBASEAPI
BOOL
WINAPI
ClearCommError
(
HANDLE
,
LPDWORD
,
LPCOMSTAT
);
...
...
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