Line | |
---|
1 | // $Id: callwrap.h,v 1.1 2004-01-11 12:03:13 sandervl Exp $
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
5 | * Win32 Exception handling + misc functions for OS/2
|
---|
6 | *
|
---|
7 | * Copyright 2003 Innotek Systemberatung GmbH (sandervl@innotek.de)
|
---|
8 | *
|
---|
9 | */
|
---|
10 | #ifndef __CALLWRAP_H__
|
---|
11 | #define __CALLWRAP_H__
|
---|
12 |
|
---|
13 | #ifdef __cplusplus
|
---|
14 | extern "C" {
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | // Callback wrapper that supports handlers with the wrong (non-stdcall)
|
---|
18 | // calling convention
|
---|
19 | DWORD CDECL WrapCallback2(WNDPROC lpfnFunction, DWORD param1, DWORD param2);
|
---|
20 |
|
---|
21 | #ifdef __cplusplus
|
---|
22 | }
|
---|
23 | #endif
|
---|
24 |
|
---|
25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.