source:
trunk/include/winexelx.h@
954
Last change on this file since 954 was 953, checked in by , 26 years ago | |
---|---|
File size: 656 bytes |
Line | |
---|---|
1 | /* $Id: winexelx.h,v 1.1 1999-09-15 23:29:37 sandervl Exp $ */ |
2 | |
3 | /* |
4 | * Win32 LX Exe class (compiled in OS/2 using Odin32 api) |
5 | * |
6 | * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl) |
7 | * |
8 | * |
9 | * Project Odin Software License can be found in LICENSE.TXT |
10 | * |
11 | */ |
12 | #ifndef __WINEXELX_H__ |
13 | #define __WINEXELX_H__ |
14 | |
15 | #include <winexebase.h> |
16 | #include <winimagelx.h> |
17 | #include <odinlx.h> |
18 | |
19 | //Class for Odin executables (win32 apps compiled in OS/2 using the Odin32 api) |
20 | class Win32LxExe : public Win32LxImage, public Win32ExeBase |
21 | { |
22 | public: |
23 | Win32LxExe(HINSTANCE hInstance); |
24 | virtual ~Win32LxExe(); |
25 | |
26 | virtual ULONG start(); |
27 | |
28 | protected: |
29 | private: |
30 | }; |
31 | |
32 | #endif //__WINEXELX_H__ |
Note:
See TracBrowser
for help on using the repository browser.