ReactOS 0.4.16-dev-59-gd481587
timer.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * PURPOSE: Window timers messages
5 * FILE: win32ss/user/ntuser/timer.c
6 * PROGRAMER: Gunnar
7 * Thomas Weidenmueller (w3seek@users.sourceforge.net)
8 * Michael Martin (michael.martin@reactos.org)
9 */
10
11#include <win32k.h>
13
14/* GLOBALS *******************************************************************/
15
17static LONG TimeLast = 0;
18
19/* Windows 2000 has room for 32768 window-less timers */
20#define NUM_WINDOW_LESS_TIMERS 32768
21
22#define HINTINDEX_BEGIN_VALUE 0
23
28
30
31#define IntLockWindowlessTimerBitmap() \
32 ExEnterCriticalRegionAndAcquireFastMutexUnsafe(Mutex)
33
34#define IntUnlockWindowlessTimerBitmap() \
35 ExReleaseFastMutexUnsafeAndLeaveCriticalRegion(Mutex)
36
37#define TimerEnterExclusive() \
38{ \
39 KeEnterCriticalRegion(); \
40 ExAcquireResourceExclusiveLite(&TimerLock, TRUE); \
41}
42
43#define TimerLeave() \
44{ \
45 ExReleaseResourceLite(&TimerLock); \
46 KeLeaveCriticalRegion(); \
47}
48
49
50/* FUNCTIONS *****************************************************************/
51static
55{
57 PTIMER Ret = NULL;
58
60 if (Ret)
61 {
64 }
65
66 return Ret;
67}
68
69static
70BOOL
73{
74 BOOL Ret = FALSE;
75 if (pTmr)
76 {
77 /* Set the flag, it will be removed when ready */
79 if ((pTmr->pWnd == NULL) && (!(pTmr->flags & TMRF_SYSTEM))) // System timers are reusable.
80 {
81 UINT_PTR IDEvent;
82
83 IDEvent = NUM_WINDOW_LESS_TIMERS - pTmr->nID;
87 }
90 }
91 if (!Ret) ERR("Warning: Unable to delete timer\n");
92
93 return Ret;
94}
95
99 UINT_PTR nID,
100 UINT flags)
101{
102 PLIST_ENTRY pLE;
103 PTIMER pTmr, RetTmr = NULL;
104
106 pLE = TimersListHead.Flink;
107 while (pLE != &TimersListHead)
108 {
109 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
110
111 if ( pTmr->nID == nID &&
112 pTmr->pWnd == Window &&
113 (pTmr->flags & (TMRF_SYSTEM|TMRF_RIT)) == (flags & (TMRF_SYSTEM|TMRF_RIT)))
114 {
115 RetTmr = pTmr;
116 break;
117 }
118
119 pLE = pLE->Flink;
120 }
121 TimerLeave();
122
123 return RetTmr;
124}
125
126PTIMER
129{
130 PLIST_ENTRY pLE;
131 PTIMER pTmr = NULL;
132
134 pLE = TimersListHead.Flink;
135 while (pLE != &TimersListHead)
136 {
137 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
138
139 if ( pMsg->lParam == (LPARAM)pTmr->pfn &&
140 (pTmr->flags & TMRF_SYSTEM) )
141 break;
142
143 pLE = pLE->Flink;
144 }
145 TimerLeave();
146
147 return pTmr;
148}
149
150BOOL
154{
155 PLIST_ENTRY pLE;
156 BOOL Ret = FALSE;
157 PTIMER pTmr;
158
160 pLE = TimersListHead.Flink;
161 while (pLE != &TimersListHead)
162 {
163 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
164 if ( (lParam == (LPARAM)pTmr->pfn) &&
165 !(pTmr->flags & (TMRF_SYSTEM|TMRF_RIT)) &&
166 (pTmr->pti->ppi == pti->ppi) )
167 {
168 Ret = TRUE;
169 break;
170 }
171 pLE = pLE->Flink;
172 }
173 TimerLeave();
174
175 return Ret;
176}
177
180 UINT_PTR IDEvent,
181 UINT Elapse,
182 TIMERPROC TimerFunc,
183 INT Type)
184{
185 PTIMER pTmr;
186 UINT_PTR Ret = IDEvent;
187 ULONG ulBitmapIndex;
189 DueTime.QuadPart = (LONGLONG)(-97656); // 1024hz .9765625 ms set to 10.0 ms
190
191#if 0
192 /* Windows NT/2k/XP behaviour */
193 if (Elapse > USER_TIMER_MAXIMUM)
194 {
195 TRACE("Adjusting uElapse\n");
196 Elapse = 1;
197 }
198#else
199 /* Windows XP SP2 and Windows Server 2003 behaviour */
200 if (Elapse > USER_TIMER_MAXIMUM)
201 {
202 TRACE("Adjusting uElapse\n");
203 Elapse = USER_TIMER_MAXIMUM;
204 }
205#endif
206
207 /* Windows 2k/XP and Windows Server 2003 SP1 behaviour */
208 if (Elapse < USER_TIMER_MINIMUM)
209 {
210 TRACE("Adjusting uElapse\n");
211 Elapse = USER_TIMER_MINIMUM; // 1024hz .9765625 ms, set to 10.0 ms (+/-)1 ms
212 }
213
214 /* Passing an IDEvent of 0 and the SetTimer returns 1.
215 It will create the timer with an ID of 0 */
216 if ((Window) && (IDEvent == 0))
217 Ret = 1;
218
219 pTmr = FindTimer(Window, IDEvent, Type);
220
221 if ((!pTmr) && (Window == NULL) && (!(Type & TMRF_SYSTEM)))
222 {
224
226 if (ulBitmapIndex == ULONG_MAX)
227 {
230 }
231 if (ulBitmapIndex == ULONG_MAX)
232 {
234 ERR("Unable to find a free window-less timer id\n");
236 return 0;
237 }
238
239 ASSERT(ulBitmapIndex < NUM_WINDOW_LESS_TIMERS);
240 IDEvent = NUM_WINDOW_LESS_TIMERS - ulBitmapIndex;
241 Ret = IDEvent;
242
244 }
245
246 if (!pTmr)
247 {
248 pTmr = CreateTimer();
249 if (!pTmr) return 0;
250
251 if (Window && (Type & TMRF_TIFROMWND))
252 pTmr->pti = Window->head.pti->pEThread->Tcb.Win32Thread;
253 else
254 {
255 if (Type & TMRF_RIT)
256 pTmr->pti = ptiRawInput;
257 else
259 }
260
261 pTmr->pWnd = Window;
262 pTmr->cmsCountdown = Elapse;
263 pTmr->cmsRate = Elapse;
264 pTmr->pfn = TimerFunc;
265 pTmr->nID = IDEvent;
266 pTmr->flags = Type|TMRF_INIT;
267 }
268 else
269 {
270 pTmr->cmsCountdown = Elapse;
271 pTmr->cmsRate = Elapse;
272 }
273
275 // Start the timer thread!
276 if (TimersListHead.Flink == TimersListHead.Blink) // There is only one timer
278
279 return Ret;
280}
281
282//
283// Process win32k system timers.
284//
285VOID
288 UINT uMsg,
289 UINT_PTR idEvent,
291{
292 PDESKTOP pDesk;
293 PWND pWnd = NULL;
294
295 if (hwnd)
296 {
298 if (!pWnd)
299 {
300 ERR("System Timer Proc has invalid window handle! %p Id: %u\n", hwnd, idEvent);
301 return;
302 }
303 }
304 else
305 {
306 TRACE( "Windowless Timer Running!\n" );
307 return;
308 }
309
310 switch (idEvent)
311 {
312/*
313 Used in NtUserTrackMouseEvent.
314 */
316 {
317 POINT Point;
318 UINT Msg;
320
321 pDesk = pWnd->head.rpdesk;
322 if ( pDesk->dwDTFlags & DF_TME_HOVER &&
323 pWnd == pDesk->spwndTrack )
324 {
325 Point = gpsi->ptCursor;
326 if ( RECTL_bPointInRect(&pDesk->rcMouseHover, Point.x, Point.y) )
327 {
328 if (pDesk->htEx == HTCLIENT) // In a client area.
329 {
330 wParam = MsqGetDownKeyState(pWnd->head.pti->MessageQueue);
332
333 if (pWnd->ExStyle & WS_EX_LAYOUTRTL)
334 {
335 Point.x = pWnd->rcClient.right - Point.x - 1;
336 }
337 else
338 Point.x -= pWnd->rcClient.left;
339 Point.y -= pWnd->rcClient.top;
340 }
341 else
342 {
343 wParam = pDesk->htEx; // Need to support all HTXYZ hits.
345 }
346 TRACE("Generating WM_NCMOUSEHOVER\n");
348 pDesk->dwDTFlags &= ~DF_TME_HOVER;
349 break; // Kill this timer.
350 }
351 }
352 }
353 return; // Not this window so just return.
354
356 {
357 FLASHWINFO fwi =
358 {sizeof(FLASHWINFO),
359 UserHMGetHandle(pWnd),
360 FLASHW_SYSTIMER,0,0};
361
362 IntFlashWindowEx(pWnd, &fwi);
363 }
364 return;
365
366 default:
367 ERR("System Timer Proc invalid id %u!\n", idEvent);
368 break;
369 }
370 IntKillTimer(pWnd, idEvent, TRUE);
371}
372
373VOID
376{
377 // Need to start gdi syncro timers then start timer with Hang App proc
378 // that calles Idle process so the screen savers will know to run......
380// Test Timers
381// IntSetTimer(NULL, 0, 1000, SystemTimerProc, TMRF_RIT);
382}
383
387 UINT_PTR nIDEvent,
388 UINT uElapse,
389 TIMERPROC lpTimerFunc)
390{
391 if (Window && Window->head.pti->pEThread->ThreadsProcess != PsGetCurrentProcess())
392 {
394 TRACE("SysemTimerSet: Access Denied!\n");
395 return 0;
396 }
397 return IntSetTimer( Window, nIDEvent, uElapse, lpTimerFunc, TMRF_SYSTEM);
398}
399
400BOOL
403{
404 PLIST_ENTRY pLE;
405 MSG Msg;
406 PTHREADINFO pti;
407 BOOL Hit = FALSE;
408 PTIMER pTmr;
409
411
413 pLE = TimersListHead.Flink;
414 while(pLE != &TimersListHead)
415 {
416 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
417 if ( (pTmr->flags & TMRF_READY) &&
418 (pTmr->pti == pti) &&
419 ((pTmr->pWnd == Window) || (Window == NULL)) )
420 {
421 Msg.hwnd = (pTmr->pWnd ? UserHMGetHandle(pTmr->pWnd) : NULL);
422 Msg.message = (pTmr->flags & TMRF_SYSTEM) ? WM_SYSTIMER : WM_TIMER;
423 Msg.wParam = (WPARAM) pTmr->nID;
424 Msg.lParam = (LPARAM) pTmr->pfn;
425 Msg.time = EngGetTickCount32();
426 // Fix all wine win:test_GetMessagePos WM_TIMER tests. See CORE-10867.
427 Msg.pt = gpsi->ptCursor;
428
430 pTmr->flags &= ~TMRF_READY;
432 Hit = TRUE;
433 // Now move this entry to the end of the list so it will not be
434 // called again in the next msg loop.
435 if (pLE != &TimersListHead)
436 {
439 }
440 break;
441 }
442
443 pLE = pLE->Flink;
444 }
445
446 TimerLeave();
447
448 return Hit;
449}
450
451VOID
454{
456 LONG Time;
457 PLIST_ENTRY pLE;
458 PTIMER pTmr;
459 LONG TimerCount = 0;
460
462 pLE = TimersListHead.Flink;
464
465 DueTime.QuadPart = (LONGLONG)(-97656); // 1024hz .9765625 ms set to 10.0 ms
466
467 while(pLE != &TimersListHead)
468 {
469 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
470 TimerCount++;
471 if (pTmr->flags & TMRF_WAITING)
472 {
473 pLE = pTmr->ptmrList.Flink;
474 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
475 continue;
476 }
477
478 if (pTmr->flags & TMRF_INIT)
479 {
480 pTmr->flags &= ~TMRF_INIT; // Skip this run.
481 }
482 else
483 {
484 if (pTmr->cmsCountdown < 0)
485 {
486 ASSERT(pTmr->pti);
487 if ((!(pTmr->flags & TMRF_READY)) && (!(pTmr->pti->TIF_flags & TIF_INCLEANUP)))
488 {
489 if (pTmr->flags & TMRF_ONESHOT)
490 pTmr->flags |= TMRF_WAITING;
491
492 if (pTmr->flags & TMRF_RIT)
493 {
494 // Hard coded call here, inside raw input thread.
495 pTmr->pfn(NULL, WM_SYSTIMER, pTmr->nID, (LPARAM)pTmr);
496 }
497 else
498 {
499 pTmr->flags |= TMRF_READY; // Set timer ready to be ran.
500 // Set thread message queue for this timer.
501 if (pTmr->pti)
502 { // Wakeup thread
503 pTmr->pti->cTimersReady++;
504 ASSERT(pTmr->pti->pEventQueueServer != NULL);
505 MsqWakeQueue(pTmr->pti, QS_TIMER, TRUE);
506 }
507 }
508 }
509 pTmr->cmsCountdown = pTmr->cmsRate;
510 }
511 else
512 pTmr->cmsCountdown -= Time - TimeLast;
513 }
514
515 pLE = pLE->Flink;
516 }
517
518 // Restart the timer thread!
521
522 TimeLast = Time;
523
524 TimerLeave();
525 TRACE("TimerCount = %d\n", TimerCount);
526}
527
530{
531 PLIST_ENTRY pLE;
532 PTIMER pTmr;
533 BOOL TimersRemoved = FALSE;
534
535 if (Window == NULL)
536 return FALSE;
537
539 pLE = TimersListHead.Flink;
540 while(pLE != &TimersListHead)
541 {
542 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
543 pLE = pLE->Flink; /* get next timer list entry before current timer is removed */
544 if ((pTmr) && (pTmr->pti == pti) && (pTmr->pWnd == Window))
545 {
546 TimersRemoved = RemoveTimer(pTmr);
547 }
548 }
549
550 TimerLeave();
551
552 return TimersRemoved;
553}
554
557{
559 PTIMER pTmr;
560 BOOL TimersRemoved = FALSE;
561
563
564 while(pLE != &TimersListHead)
565 {
566 pTmr = CONTAINING_RECORD(pLE, TIMER, ptmrList);
567 pLE = pLE->Flink; /* get next timer list entry before current timer is removed */
568 if ((pTmr) && (pTmr->pti == pti))
569 {
570 TimersRemoved = RemoveTimer(pTmr);
571 }
572 }
573
574 TimerLeave();
575
576 return TimersRemoved;
577}
578
580IntKillTimer(PWND Window, UINT_PTR IDEvent, BOOL SystemTimer)
581{
582 PTIMER pTmr = NULL;
583 TRACE("IntKillTimer Window %p id %uI systemtimer %s\n",
584 Window, IDEvent, SystemTimer ? "TRUE" : "FALSE");
585
587 pTmr = FindTimer(Window, IDEvent, SystemTimer ? TMRF_SYSTEM : 0);
588
589 if (pTmr)
590 {
591 RemoveTimer(pTmr);
592 }
593 TimerLeave();
594
595 return pTmr ? TRUE : FALSE;
596}
597
598CODE_SEG("INIT")
600NTAPI
602{
603 ULONG BitmapBytes;
604
605 /* Allocate FAST_MUTEX from non paged pool */
607 if (!Mutex)
608 {
610 }
611
613
614 BitmapBytes = ALIGN_UP_BY(NUM_WINDOW_LESS_TIMERS, sizeof(ULONG) * 8) / 8;
617 {
618 return STATUS_UNSUCCESSFUL;
619 }
620
624
625 /* Yes we need this, since ExAllocatePoolWithTag isn't supposed to zero out allocated memory */
627
630
631 return STATUS_SUCCESS;
632}
633
637(
638 HWND hWnd,
639 UINT_PTR nIDEvent,
640 UINT uElapse,
641 TIMERPROC lpTimerFunc
642)
643{
644 PWND Window = NULL;
646
647 TRACE("Enter NtUserSetTimer\n");
650
651 ret = IntSetTimer(Window, nIDEvent, uElapse, lpTimerFunc, TMRF_TIFROMWND);
652
653 UserLeave();
654 TRACE("Leave NtUserSetTimer, ret=%u\n", ret);
655
656 return ret;
657}
658
659
660BOOL
663(
664 HWND hWnd,
665 UINT_PTR uIDEvent
666)
667{
668 PWND Window = NULL;
669 BOOL ret;
670
671 TRACE("Enter NtUserKillTimer\n");
674
675 ret = IntKillTimer(Window, uIDEvent, FALSE);
676
677 UserLeave();
678
679 TRACE("Leave NtUserKillTimer, ret=%i\n", ret);
680 return ret;
681}
682
683
687 HWND hWnd,
688 UINT_PTR nIDEvent,
689 UINT uElapse,
690 TIMERPROC lpTimerFunc
691)
692{
694
696 TRACE("Enter NtUserSetSystemTimer\n");
697
698 ret = IntSetTimer(UserGetWindowObject(hWnd), nIDEvent, uElapse, NULL, TMRF_SYSTEM);
699
700 UserLeave();
701
702 TRACE("Leave NtUserSetSystemTimer, ret=%u\n", ret);
703 return ret;
704}
705
706BOOL
710{
711 BOOL Ret = FALSE;
712
714
716
717 UserLeave();
718 return Ret;
719}
720
721/* EOF */
#define CODE_SEG(...)
#define ALIGN_UP_BY(size, align)
Type
Definition: Type.h:7
HWND hWnd
Definition: settings.c:17
LONG NTSTATUS
Definition: precomp.h:26
#define ERR(fmt,...)
Definition: precomp.h:57
#define DBG_DEFAULT_CHANNEL(ch)
Definition: debug.h:106
Definition: Mutex.h:16
struct @1636 Msg[]
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
#define WM_SYSTIMER
Definition: comctl32.h:125
#define RtlInitializeBitMap
Definition: dbgbitmap.h:326
#define RtlClearAllBits
Definition: dbgbitmap.h:329
#define RtlClearBit
Definition: dbgbitmap.h:330
#define RtlFindClearBitsAndSet
Definition: dbgbitmap.h:333
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define APIENTRY
Definition: api.h:79
#define CALLBACK
Definition: compat.h:35
#define ERROR_ACCESS_DENIED
Definition: compat.h:97
PSERVERINFO gpsi
Definition: imm.c:18
#define EngGetTickCount32()
Definition: eng.h:43
#define RemoveEntryList(Entry)
Definition: env_spec_w32.h:986
#define InsertTailList(ListHead, Entry)
#define ExAllocatePoolWithTag(hernya, size, tag)
Definition: env_spec_w32.h:350
NTSTATUS ExInitializeResourceLite(PULONG res)
Definition: env_spec_w32.h:641
#define NonPagedPool
Definition: env_spec_w32.h:307
ULONG ERESOURCE
Definition: env_spec_w32.h:594
#define InitializeListHead(ListHead)
Definition: env_spec_w32.h:944
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
return pRequest CreateTimer()
ULONG Handle
Definition: gdb_input.c:15
GLbitfield flags
Definition: glext.h:7161
#define ULONG_MAX
Definition: limits.h:44
#define TIF_INCLEANUP
Definition: ntuser.h:263
#define UserHMGetHandle(obj)
Definition: ntuser.h:230
@ TYPE_TIMER
Definition: ntuser.h:56
#define UserHMSetHandle(obj, handle)
Definition: ntuser.h:231
#define ASSERT(a)
Definition: mode.c:44
static PLARGE_INTEGER Time
Definition: time.c:105
VOID FASTCALL ClearMsgBitsMask(PTHREADINFO pti, UINT MessageBits)
Definition: msgqueue.c:445
WPARAM FASTCALL MsqGetDownKeyState(PUSER_MESSAGE_QUEUE MessageQueue)
Definition: msgqueue.c:338
VOID FASTCALL MsqPostMessage(PTHREADINFO pti, MSG *Msg, BOOLEAN HardwareMessage, DWORD MessageBits, DWORD dwQEvent, LONG_PTR ExtraInfo)
Definition: msgqueue.c:1337
VOID CALLBACK HungAppSysTimerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
Definition: msgqueue.c:2187
VOID FASTCALL MsqWakeQueue(PTHREADINFO pti, DWORD MessageBits, BOOL KeyEvent)
Definition: msgqueue.c:412
unsigned __int3264 UINT_PTR
Definition: mstsclib_h.h:274
unsigned int UINT
Definition: ndis.h:50
#define FASTCALL
Definition: nt_native.h:50
PVOID NTAPI PsGetCurrentThreadWin32Thread(VOID)
Definition: thread.c:805
VOID FASTCALL UserLeave(VOID)
Definition: ntuser.c:258
VOID FASTCALL UserEnterShared(VOID)
Definition: ntuser.c:242
VOID FASTCALL UserEnterExclusive(VOID)
Definition: ntuser.c:249
#define FLASHW_SYSTIMER
Definition: painting.h:4
long LONG
Definition: pedump.c:60
#define WM_MOUSEHOVER
Definition: commctrl.h:4979
#define STATUS_SUCCESS
Definition: shellext.h:65
#define TRACE(s)
Definition: solgame.cpp:4
DWORD dwTime
Definition: solitaire.cpp:27
Definition: window.c:28
PWND spwndTrack
Definition: desktop.h:31
DWORD htEx
Definition: desktop.h:32
RECT rcMouseHover
Definition: desktop.h:33
DWORD dwDTFlags
Definition: desktop.h:12
Definition: typedefs.h:120
struct _LIST_ENTRY * Blink
Definition: typedefs.h:122
struct _LIST_ENTRY * Flink
Definition: typedefs.h:121
struct _DESKTOP * rpdesk
Definition: ntuser.h:194
PPROCESSINFO ppi
Definition: win32.h:88
PKEVENT pEventQueueServer
Definition: win32.h:125
UINT cTimersReady
Definition: win32.h:110
FLONG TIF_flags
Definition: win32.h:95
Definition: timer.h:4
INT cmsRate
Definition: timer.h:11
TIMERPROC pfn
Definition: timer.h:13
UINT_PTR nID
Definition: timer.h:9
PWND pWnd
Definition: timer.h:8
LIST_ENTRY ptmrList
Definition: timer.h:6
INT cmsCountdown
Definition: timer.h:10
PTHREADINFO pti
Definition: timer.h:7
FLONG flags
Definition: timer.h:12
Definition: ntuser.h:694
DWORD ExStyle
Definition: ntuser.h:704
THRDESKHEAD head
Definition: ntuser.h:695
RECT rcClient
Definition: ntuser.h:717
LPARAM lParam
Definition: winuser.h:3120
LONG right
Definition: windef.h:308
LONG top
Definition: windef.h:307
LONG left
Definition: windef.h:306
BOOLEAN NTAPI KeSetTimer(IN OUT PKTIMER Timer, IN LARGE_INTEGER DueTime, IN PKDPC Dpc OPTIONAL)
Definition: timerobj.c:281
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
int64_t LONGLONG
Definition: typedefs.h:68
#define NTAPI
Definition: typedefs.h:36
int32_t INT
Definition: typedefs.h:58
#define CONTAINING_RECORD(address, type, field)
Definition: typedefs.h:260
uint32_t ULONG
Definition: typedefs.h:59
#define STATUS_UNSUCCESSFUL
Definition: udferr_usr.h:132
#define STATUS_INSUFFICIENT_RESOURCES
Definition: udferr_usr.h:158
BOOL FASTCALL IntFlashWindowEx(PWND pWnd, PFLASHWINFO pfwi)
Definition: painting.c:1310
PWND FASTCALL UserGetWindowObject(HWND hWnd)
Definition: window.c:124
int ret
_In_ WDFTIMER _In_ LONGLONG DueTime
Definition: wdftimer.h:190
FORCEINLINE BOOL RECTL_bPointInRect(_In_ const RECTL *prcl, _In_ INT x, _In_ INT y)
Definition: rect.h:52
#define DF_TME_HOVER
Definition: desktop.h:47
PTHREADINFO ptiRawInput
Definition: input.c:15
PKTIMER MasterTimer
Definition: input.c:16
BOOL FASTCALL UserPostMessage(HWND Wnd, UINT Msg, WPARAM wParam, LPARAM lParam)
Definition: message.c:1395
BOOL FASTCALL UserDereferenceObject(PVOID Object)
Definition: object.c:644
BOOL FASTCALL UserDeleteObject(HANDLE h, HANDLE_TYPE type)
Definition: object.c:717
PUSER_HANDLE_TABLE gHandleTable
Definition: object.c:13
PVOID FASTCALL UserCreateObject(PUSER_HANDLE_TABLE ht, PDESKTOP pDesktop, PTHREADINFO pti, HANDLE *h, HANDLE_TYPE type, ULONG size)
Definition: object.c:568
#define TAG_INTERNAL_SYNC
Definition: tags.h:18
#define TAG_TIMERBMP
Definition: tags.h:10
BOOL FASTCALL ValidateTimerCallback(PTHREADINFO pti, LPARAM lParam)
Definition: timer.c:152
BOOL FASTCALL PostTimerMessages(PWND Window)
Definition: timer.c:402
VOID CALLBACK SystemTimerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
Definition: timer.c:287
#define HINTINDEX_BEGIN_VALUE
Definition: timer.c:22
#define IntLockWindowlessTimerBitmap()
Definition: timer.c:31
static PFAST_MUTEX Mutex
Definition: timer.c:24
PTIMER FASTCALL FindSystemTimer(PMSG pMsg)
Definition: timer.c:128
UINT_PTR APIENTRY NtUserSetSystemTimer(HWND hWnd, UINT_PTR nIDEvent, UINT uElapse, TIMERPROC lpTimerFunc)
Definition: timer.c:686
NTSTATUS NTAPI InitTimerImpl(VOID)
Definition: timer.c:601
#define TimerLeave()
Definition: timer.c:43
#define IntUnlockWindowlessTimerBitmap()
Definition: timer.c:34
static LIST_ENTRY TimersListHead
Definition: timer.c:16
UINT_PTR FASTCALL SystemTimerSet(PWND Window, UINT_PTR nIDEvent, UINT uElapse, TIMERPROC lpTimerFunc)
Definition: timer.c:386
static BOOL FASTCALL RemoveTimer(PTIMER pTmr)
Definition: timer.c:72
BOOL APIENTRY NtUserValidateTimerCallback(LPARAM lParam)
Definition: timer.c:708
static LONG TimeLast
Definition: timer.c:17
static ULONG HintIndex
Definition: timer.c:27
UINT_PTR APIENTRY NtUserSetTimer(HWND hWnd, UINT_PTR nIDEvent, UINT uElapse, TIMERPROC lpTimerFunc)
Definition: timer.c:637
VOID FASTCALL ProcessTimers(VOID)
Definition: timer.c:453
BOOL FASTCALL IntKillTimer(PWND Window, UINT_PTR IDEvent, BOOL SystemTimer)
Definition: timer.c:580
PTIMER FASTCALL FindTimer(PWND Window, UINT_PTR nID, UINT flags)
Definition: timer.c:98
BOOL FASTCALL DestroyTimersForWindow(PTHREADINFO pti, PWND Window)
Definition: timer.c:529
#define NUM_WINDOW_LESS_TIMERS
Definition: timer.c:20
BOOL APIENTRY NtUserKillTimer(HWND hWnd, UINT_PTR uIDEvent)
Definition: timer.c:663
static RTL_BITMAP WindowLessTimersBitMap
Definition: timer.c:25
#define TimerEnterExclusive()
Definition: timer.c:37
static PVOID WindowLessTimersBitMapBuffer
Definition: timer.c:26
VOID FASTCALL StartTheTimers(VOID)
Definition: timer.c:375
BOOL FASTCALL DestroyTimersForThread(PTHREADINFO pti)
Definition: timer.c:556
UINT_PTR FASTCALL IntSetTimer(PWND Window, UINT_PTR IDEvent, UINT Elapse, TIMERPROC TimerFunc, INT Type)
Definition: timer.c:179
ERESOURCE TimerLock
Definition: timer.c:29
#define TMRF_SYSTEM
Definition: timer.h:20
#define TMRF_READY
Definition: timer.h:19
#define TMRF_INIT
Definition: timer.h:22
#define TMRF_RIT
Definition: timer.h:21
#define TMRF_TIFROMWND
Definition: timer.h:25
#define ID_EVENT_SYSTIMER_MOUSEHOVER
Definition: timer.h:27
#define TMRF_WAITING
Definition: timer.h:24
#define TMRF_ONESHOT
Definition: timer.h:23
#define ID_EVENT_SYSTIMER_FLASHWIN
Definition: timer.h:28
ENGAPI VOID APIENTRY EngSetLastError(_In_ ULONG iError)
Definition: error.c:22
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
LONG_PTR LPARAM
Definition: windef.h:208
UINT_PTR WPARAM
Definition: windef.h:207
#define ERROR_NO_SYSTEM_RESOURCES
Definition: winerror.h:931
#define WS_EX_LAYOUTRTL
Definition: winuser.h:390
#define MAKELPARAM(l, h)
Definition: winuser.h:4011
#define QS_TIMER
Definition: winuser.h:881
#define QS_ALLPOSTMESSAGE
Definition: winuser.h:885
#define USER_TIMER_MAXIMUM
Definition: winuser.h:908
#define WM_TIMER
Definition: winuser.h:1745
#define HTCLIENT
Definition: winuser.h:2478
#define USER_TIMER_MINIMUM
Definition: winuser.h:909
#define QS_POSTMESSAGE
Definition: winuser.h:880
VOID(CALLBACK * TIMERPROC)(HWND, UINT, UINT_PTR, DWORD)
Definition: winuser.h:2900
#define WM_NCMOUSEHOVER
Definition: winuser.h:1844
FORCEINLINE VOID ExInitializeFastMutex(_Out_ PFAST_MUTEX FastMutex)
Definition: exfuncs.h:274
* PFAST_MUTEX
Definition: extypes.h:17
FAST_MUTEX
Definition: extypes.h:17
#define PsGetCurrentProcess
Definition: psfuncs.h:17