Changeset 123 for trunk/src/helpers/timer.c
- Timestamp:
- Dec 14, 2001, 11:41:33 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/timer.c
r93 r123 540 540 // window still valid: 541 541 // get the window's window proc 542 PFNWP pfnwp = (PFNWP)WinQueryWindowPtr(pTimer->hwndTarget, 543 QWP_PFNWP); 542 QMSG qmsg; 543 /* PFNWP pfnwp = (PFNWP)WinQueryWindowPtr(pTimer->hwndTarget, 544 QWP_PFNWP); */ 544 545 545 546 // moved this up V0.9.14 (2001-08-01) [umoeller] … … 547 548 548 549 // call the window proc DIRECTLY 549 pfnwp(pTimer->hwndTarget, 550 qmsg.hwnd = pTimer->hwndTarget; 551 qmsg.msg = WM_TIMER; 552 qmsg.mp1 = (MPARAM)pTimer->usTimerID; 553 qmsg.mp2 = (MPARAM)0; 554 qmsg.time = 0; 555 qmsg.ptl.x = 0; 556 qmsg.ptl.y = 0; 557 qmsg.reserved = 0; 558 WinDispatchMsg(pSet->hab, 559 &qmsg); 560 /* pfnwp(pTimer->hwndTarget, 550 561 WM_TIMER, 551 562 (MPARAM)pTimer->usTimerID, 552 0); 563 0); */ 553 564 // V0.9.12 (2001-05-24) [umoeller] 554 565 // if the winproc chooses to start or
Note:
See TracChangeset
for help on using the changeset viewer.