Rev | Line | |
---|
[1274] | 1 | /* $Id: windllpe2lx.h,v 1.2 1999-10-14 01:39:12 bird Exp $ */
|
---|
[953] | 2 |
|
---|
| 3 | /*
|
---|
| 4 | * Win32 PE2LX Dll class
|
---|
| 5 | *
|
---|
| 6 | * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
[1274] | 7 | * Copyright 1999 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
|
---|
[953] | 8 | *
|
---|
| 9 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
| 10 | *
|
---|
| 11 | */
|
---|
| 12 | #ifndef __WINDLLPE2LX_H__
|
---|
| 13 | #define __WINDLLPE2LX_H__
|
---|
| 14 |
|
---|
| 15 | #include <windllbase.h>
|
---|
| 16 | #include <winimagepe2lx.h>
|
---|
| 17 |
|
---|
| 18 | class Win32Pe2LxDll : public Win32Pe2LxImage, public Win32DllBase
|
---|
| 19 | {
|
---|
| 20 | public:
|
---|
[1274] | 21 | /** @cat Constructor/Destructor */
|
---|
| 22 | Win32Pe2LxDll(HINSTANCE hinstance, BOOL fWin32k) throw(ULONG);
|
---|
| 23 | virtual ~Win32Pe2LxDll();
|
---|
[953] | 24 |
|
---|
[1274] | 25 | /** @cat Exports */
|
---|
| 26 | virtual ULONG getApi(char *name);
|
---|
| 27 | virtual ULONG getApi(int ordinal);
|
---|
[953] | 28 |
|
---|
[1274] | 29 | /** @cat Query */
|
---|
| 30 | virtual BOOL isLxDll();
|
---|
[953] | 31 | };
|
---|
| 32 |
|
---|
| 33 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.