Ignore:
Timestamp:
Oct 28, 1999, 8:22:31 PM (26 years ago)
Author:
sandervl
Message:

message fixes

File:
1 edited

Legend:

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

    r1418 r1495  
    1 /* $Id: user32.cpp,v 1.47 1999-10-23 16:45:22 cbratschi Exp $ */
     1/* $Id: user32.cpp,v 1.48 1999-10-28 18:22:28 sandervl Exp $ */
    22
    33/*
     
    11761176}
    11771177
    1178 /* Timer Functions */
    1179 
    1180 #if 0
    1181 BOOL WIN32API KillTimer(HWND hWnd, UINT uIDEvent)
    1182 {
    1183 #ifdef DEBUG
    1184     WriteLog("USER32:  KillTimer\n");
    1185 #endif
    1186     hWnd = Win32Window::Win32ToOS2Handle(hWnd);
    1187     //WinStopTimer
    1188     //CB: replace
    1189     return O32_KillTimer(hWnd,uIDEvent);
    1190 }
    1191 //******************************************************************************
    1192 //******************************************************************************
    1193 UINT WIN32API SetTimer( HWND hwnd, UINT idTimer, UINT uTimeout, TIMERPROC  tmprc)
    1194 {
    1195 #ifdef DEBUG
    1196     WriteLog("USER32: SetTimer INCORRECT CALLING CONVENTION FOR HANDLER!!!!!\n");
    1197 #endif
    1198     hwnd = Win32Window::Win32ToOS2Handle(hwnd);
    1199     //SvL: Write callback handler class for this one
    1200     //CB: replace
    1201     return O32_SetTimer(hwnd,idTimer,uTimeout,(TIMERPROC_O32)tmprc);
    1202 }
    1203 #endif
    1204 
    12051178/* Process and Thread Functions */
    12061179
Note: See TracChangeset for help on using the changeset viewer.