Ignore:
Timestamp:
Jan 11, 2000, 12:29:16 AM (26 years ago)
Author:
sandervl
Message:

get/peekmessage fixes, timer fix, (user/new) replaced wm_hittest code; added wm_ncactivate, changed system menu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/timer.cpp

    r2099 r2400  
    1 /* $Id: timer.cpp,v 1.7 1999-12-17 17:18:03 cbratschi Exp $ */
     1/* $Id: timer.cpp,v 1.8 2000-01-10 23:29:11 sandervl Exp $ */
    22
    33/*
     
    9999        return (FALSE);  /* forward message */
    100100
    101     if (!WinInSendMsg (GetThreadHAB()))
     101    if (!WinInSendMsg (GetThreadHAB())) {
     102        dprintf2(("TIMER_HandleTimer %x %x %x", pTimer->hwnd, pTimer->id, pMsg->time));
    102103        pTimer->proc (pTimer->hwnd, (pTimer->inUse == TIMER::SystemTimer) ? WM_SYSTIMER_W:WM_TIMER_W, pTimer->id, pMsg->time);
    103 
     104    }
    104105    return (TRUE);
    105106}
     
    221222    UINT rc;
    222223
    223     dprintf(("USER32: SetTimer %04x %d %d %08lx", hwnd, id, timeout, (LONG)proc));
     224    dprintf(("USER32: SetTimer %x %d %d %08lx", hwnd, id, timeout, (LONG)proc));
    224225
    225226    rc = TIMER_SetTimer (hwnd, id, timeout, proc, FALSE);
     
    247248    BOOL rc;
    248249
    249     dprintf(("USER32: KillTimer %04x %d", hwnd, id));
     250    dprintf(("USER32: KillTimer %x %d", hwnd, id));
    250251
    251252    rc = TIMER_KillTimer (hwnd, id, FALSE);
     
    260261    BOOL rc;
    261262
    262     dprintf(("USER32: KillSystemTimer %04x %d", hwnd, id));
     263    dprintf(("USER32: KillSystemTimer %x %d", hwnd, id));
    263264
    264265    rc = TIMER_KillTimer (hwnd, id, TRUE);
Note: See TracChangeset for help on using the changeset viewer.