source: trunk/src/user32/USRCALL.H@ 74

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

* empty log message *

File size: 555 bytes
Line 
1/*
2 *
3 * Project Odin Software License can be found in LICENSE.TXT
4 *
5 */
6/*
7 * Win32 callback functions for OS/2
8 *
9 * Copyright 1998 Sander van Leeuwen
10 *
11 */
12#ifndef __USRCALL_H__
13#define __USRCALL_H__
14
15//Why the @#%@#$ didn't IBM use _stdcall??
16
17class EnumWindowCallback
18{
19public:
20 EnumWindowCallback(WNDENUMPROC pUserCallback, LPARAM lpData);
21 ~EnumWindowCallback();
22
23 WNDENUMPROC_O32 GetOS2Callback();
24private:
25
26 LPARAM lpUserData;
27 WNDENUMPROC pCallback;
28 friend static BOOL EXPENTRY_O32 EnumWndProc(HWND hwnd, LPARAM lpParam);
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.