source: trunk/src/user32/timer.cpp@ 121

Last change on this file since 121 was 121, checked in by sandervl, 26 years ago

Renamed .C to .CPP

File size: 1.9 KB
Line 
1/*
2 * Win32 window subproc class for OS/2
3 *
4 * Copyright 1998 Sander van Leeuwen
5 *
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10#include <os2win.h>
11#include "timer.h"
12
13void EXPENTRY_O32 TimerProc(HWND hwnd, UINT, UINT, DWORD);
14
15//******************************************************************************
16//******************************************************************************
17UINT WIN32API SetTimer( HWND hwnd, UINT id, UINT timeout, TIMERPROC proc)
18{
19 dprintf(("USER32: SetTimer\n"));
20
21 return O32_SetTimer(hwnd, id, timeout, TimerProc);
22}
23//******************************************************************************
24//******************************************************************************
25BOOL WIN32API KillTimer(HWND hwnd, UINT id)
26{
27 dprintf(("USER32: KillTimer\n"));
28 return O32_KillTimer(hwnd, id);
29}
30//******************************************************************************
31//******************************************************************************
32WinTimer::WinTimer(TIMERPROC pTimerProc, DWORD id)
33{
34
35}
36//******************************************************************************
37//******************************************************************************
38TIMERPROC_O32 WinTimer::GetOS2Callback()
39{
40 return WinTimer::TimerProc;
41}
42//******************************************************************************
43//******************************************************************************
44void deleteWinTimer(DWORD id)
45{
46}
47//******************************************************************************
48//******************************************************************************
49void EXPENTRY_O32 TimerProc(HWND hwnd, UINT, UINT, DWORD)
50{
51}
52//******************************************************************************
53//******************************************************************************
Note: See TracBrowser for help on using the repository browser.