source: trunk/src/kernel32/winimagelx.h@ 6030

Last change on this file since 6030 was 6015, checked in by bird, 24 years ago

Corrected Pe2Lx bug in LoadLibrary. Added isPe2LxDLL.

File size: 895 bytes
Line 
1/* $Id: winimagelx.h,v 1.3 2001-06-15 09:42:49 bird Exp $ */
2
3/*
4 * Win32 LX Image base class
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 __WINIMAGELX_H__
13#define __WINIMAGELX_H__
14
15#include <winimagebase.h>
16
17class Win32LxImage : public virtual Win32ImageBase
18{
19public:
20 Win32LxImage(HINSTANCE hInstance, PVOID pResData);
21virtual ~Win32LxImage();
22
23virtual ULONG getApi(char *name);
24virtual ULONG getApi(int ordinal);
25
26 LPVOID buildHeader(DWORD MajorImageVersion, DWORD MinorImageVersion,
27 DWORD Subsystem);
28 /** Get the OS/2 module handle.
29 * @returns OS/2 module handle. */
30 HINSTANCE getHMOD() const { return hinstance; }
31protected:
32 LPVOID header;
33 HINSTANCE hinstanceOS2;
34private:
35};
36
37#endif //__WINIMAGELX_H__
38
Note: See TracBrowser for help on using the repository browser.