Changeset 1418 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Oct 23, 1999, 6:45:24 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r1408 r1418 1 /* $Id: pmwindow.cpp,v 1.4 1 1999-10-23 10:21:43 sandervlExp $ */1 /* $Id: pmwindow.cpp,v 1.42 1999-10-23 16:45:20 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 29 29 #include "oslibmsg.h" 30 30 #include "dc.h" 31 #include "timer.h" 31 32 #include <thread.h> 32 33 #include <wprocess.h> … … 767 768 768 769 case WM_TIMER: 769 if (mp2) win32wnd->MsgTimer((ULONG)mp1); 770 if (mp2) 771 { 772 BOOL sys; 773 ULONG id; 774 775 if (TIMER_GetTimerInfo(hwnd,(ULONG)mp1,&sys,&id)) 776 { 777 if (sys) 778 win32wnd->MsgSysTimer(id); 779 else 780 win32wnd->MsgTimer(id); 781 } 782 } 770 783 goto RunDefWndProc; 771 784
Note:
See TracChangeset
for help on using the changeset viewer.