Last change
on this file since 1036 was 953, checked in by sandervl, 26 years ago |
New headers for kernel32 win32 image classes + removed old ones + nameid.h
|
File size:
621 bytes
|
Rev | Line | |
---|
[953] | 1 | /* $Id: winexepe2lx.h,v 1.1 1999-09-15 23:29:37 sandervl Exp $ */
|
---|
| 2 |
|
---|
| 3 | /*
|
---|
| 4 | * Win32 PE2LX Exe 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 __WINEXEPE2LX_H__
|
---|
| 13 | #define __WINEXEPE2LX_H__
|
---|
| 14 |
|
---|
| 15 | #include <winexebase.h>
|
---|
| 16 | #include <winimagepe2lx.h>
|
---|
| 17 |
|
---|
| 18 | //Class for executables converted by pe2lx or win32k
|
---|
| 19 | class Win32Pe2LxExe : public Win32Pe2LxImage, public Win32ExeBase
|
---|
| 20 | {
|
---|
| 21 | public:
|
---|
| 22 | Win32Pe2LxExe(HINSTANCE hinstance, int NameTableId, int Win32TableId);
|
---|
| 23 | virtual ~Win32Pe2LxExe();
|
---|
| 24 |
|
---|
| 25 | protected:
|
---|
| 26 | private:
|
---|
| 27 | };
|
---|
| 28 |
|
---|
| 29 | #endif //__WINEXEPE2LX_H__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.