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
e9caf93b
Commit
e9caf93b
authored
May 08, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
May 08, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed TIMER_SwitchQueue.
parent
cdd3a528
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
23 deletions
+0
-23
message.h
include/message.h
+0
-1
task.c
loader/task.c
+0
-2
timer.c
windows/timer.c
+0
-20
No files found.
include/message.h
View file @
e9caf93b
...
...
@@ -21,7 +21,6 @@ extern BOOL MSG_InternalGetMessage( MSG *msg, HWND hwnd,
extern
BOOL
TIMER_Init
(
void
);
extern
void
TIMER_RemoveWindowTimers
(
HWND
hwnd
);
extern
void
TIMER_RemoveQueueTimers
(
HQUEUE16
hqueue
);
extern
void
TIMER_SwitchQueue
(
HQUEUE16
hOldQueue
,
HQUEUE16
hNewQueue
);
extern
BOOL
TIMER_GetTimerMsg
(
MSG
*
msg
,
HWND
hwnd
,
HQUEUE16
hQueue
,
BOOL
remove
);
...
...
loader/task.c
View file @
e9caf93b
...
...
@@ -1240,8 +1240,6 @@ HQUEUE16 WINAPI SetTaskQueue16( HTASK16 hTask, HQUEUE16 hQueue )
hPrev
=
pTask
->
hQueue
;
pTask
->
hQueue
=
hQueue
;
TIMER_SwitchQueue
(
hPrev
,
hQueue
);
return
hPrev
;
}
...
...
windows/timer.c
View file @
e9caf93b
...
...
@@ -119,26 +119,6 @@ static void TIMER_ClearTimer( TIMER * pTimer )
/***********************************************************************
* TIMER_SwitchQueue
*/
void
TIMER_SwitchQueue
(
HQUEUE16
old
,
HQUEUE16
new
)
{
TIMER
*
pT
;
EnterCriticalSection
(
&
csTimer
);
pT
=
pNextTimer
;
while
(
pT
)
{
if
(
pT
->
hq
==
old
)
pT
->
hq
=
new
;
pT
=
pT
->
next
;
}
LeaveCriticalSection
(
&
csTimer
);
}
/***********************************************************************
* TIMER_RemoveWindowTimers
*
* Remove all timers for a given window.
...
...
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