source: trunk/src/gdi32/CALLBACK.H@ 62

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

* empty log message *

File size: 596 bytes
Line 
1/*
2 * GDI32 support code for Line DDA callbacks
3 *
4 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
5 *
6 * Project Odin Software License can be found in LICENSE.TXT
7 *
8 */
9#ifndef __CALLBACK_H__
10#define __CALLBACK_H__
11
12//Why the @#%@#$ didn't IBM use _stdcall??
13
14class LineDDAProcCallback
15{
16public:
17 LineDDAProcCallback(LINEDDAPROC pUserCallback, LPARAM lpData);
18 ~LineDDAProcCallback();
19
20 LINEDDAPROC_O32 GetOS2Callback();
21private:
22
23 LPARAM lpUserData;
24 LINEDDAPROC pCallback;
25 friend static VOID OPEN32API Callback(int X, int Y, LPARAM lpData);
26};
27
28#endif
Note: See TracBrowser for help on using the repository browser.