Rev | Line | |
---|
[10397] | 1 | /* $Id: windllpe2lx.h,v 1.4 2004-01-15 10:39:08 sandervl Exp $ */
|
---|
[3074] | 2 |
|
---|
| 3 | /*
|
---|
| 4 | * Win32 PE2LX Dll class
|
---|
| 5 | *
|
---|
| 6 | * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
| 7 | * Copyright 1999 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
|
---|
| 8 | *
|
---|
| 9 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
| 10 | *
|
---|
| 11 | */
|
---|
| 12 | #ifndef __WINDLLPE2LX_H__
|
---|
| 13 | #define __WINDLLPE2LX_H__
|
---|
| 14 |
|
---|
[21916] | 15 | #include "windllbase.h"
|
---|
| 16 | #include "winimagepe2lx.h"
|
---|
[3074] | 17 |
|
---|
| 18 | /**
|
---|
| 19 | * Pe2Lx Dll images.
|
---|
| 20 | * @author knut st. osmundsen
|
---|
| 21 | * @approval -
|
---|
| 22 | */
|
---|
| 23 | class Win32Pe2LxDll : public Win32Pe2LxImage, public Win32DllBase
|
---|
| 24 | {
|
---|
| 25 | public:
|
---|
| 26 | /** @cat Constructor/Destructor */
|
---|
[21916] | 27 | Win32Pe2LxDll(HINSTANCE hinstance, BOOL fWin32k);
|
---|
[6015] | 28 | virtual ~Win32Pe2LxDll();
|
---|
[9963] | 29 | DWORD init();
|
---|
[3074] | 30 |
|
---|
| 31 | /** @cat Query */
|
---|
[6015] | 32 | BOOL isPe2LxDll() const;
|
---|
| 33 | BOOL isLxDll() const;
|
---|
[3074] | 34 | };
|
---|
| 35 |
|
---|
| 36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.