Ignore:
Timestamp:
May 16, 2003, 12:59:28 PM (22 years ago)
Author:
sandervl
Message:

Handle WM_(SYS)TIMER timer calls in DispatchMessageA/W

File:
1 edited

Legend:

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

    r10017 r10104  
    1 /* $Id: oslibmsgtranslate.cpp,v 1.109 2003-04-11 17:26:11 sandervl Exp $ */
     1/* $Id: oslibmsgtranslate.cpp,v 1.110 2003-05-16 10:59:27 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    929929//        {
    930930          BOOL sys;
    931           ULONG id;
    932 
    933           if (TIMER_GetTimerInfo(os2Msg->hwnd,(ULONG)os2Msg->mp1,&sys,&id))
     931          ULONG id, proc;
     932
     933          if (TIMER_GetTimerInfo(os2Msg->hwnd,(ULONG)os2Msg->mp1,&sys,&id, &proc))
    934934          {
    935935                winMsg->wParam = (WPARAM)id;
     936                winMsg->lParam = (LPARAM)proc;
    936937                winMsg->message= (sys) ? WINWM_SYSTIMER : WINWM_TIMER;
    937938                break;
Note: See TracChangeset for help on using the changeset viewer.