From 0967cc00ba36c9d29b65886df48575975fc78fa7 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Wed, 22 Oct 2003 19:02:13 +0000 Subject: [PATCH] fixed handling callback timers, thanks to GvG svn path=/trunk/; revision=6405 --- reactos/subsys/win32k/ntuser/timer.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/timer.c b/reactos/subsys/win32k/ntuser/timer.c index 5a7a400e1c2..85b83c07441 100644 --- a/reactos/subsys/win32k/ntuser/timer.c +++ b/reactos/subsys/win32k/ntuser/timer.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: timer.c,v 1.14 2003/10/16 22:07:37 weiden Exp $ +/* $Id: timer.c,v 1.15 2003/10/22 19:02:13 weiden Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -467,14 +467,7 @@ TimerThreadMain(PVOID StartContext) continue; } - if(!MsgTimer->Msg.lParam) - { - MsqPostMessage(((PW32THREAD)Thread->Win32Thread)->MessageQueue, MsqCreateMessage(&MsgTimer->Msg)); - } - else - { - /* FIXME - call TIMERPROC */ - } + MsqPostMessage(((PW32THREAD)Thread->Win32Thread)->MessageQueue, MsqCreateMessage(&MsgTimer->Msg)); ObDereferenceObject(Thread);