source: trunk/include/winexepe2lx.h@ 1566

Last change on this file since 1566 was 1327, checked in by bird, 26 years ago

Exception throwing is removed. Separate init method instead.

File size: 848 bytes
RevLine 
[1327]1/* $Id: winexepe2lx.h,v 1.3 1999-10-17 01:52:19 bird Exp $ */
[953]2
3/*
4 * Win32 PE2LX Exe 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 __WINEXEPE2LX_H__
13#define __WINEXEPE2LX_H__
14
15#include <winexebase.h>
16#include <winimagepe2lx.h>
17
[1274]18
19/**
20 * Class for executables converted by pe2lx or win32k
21 * @shortdesc Class for executables converted by pe2lx or win32k
22 * @author Sander van Leeuwen, knut st. osmundsen
23 * @approval -
24 */
[953]25class Win32Pe2LxExe : public Win32Pe2LxImage, public Win32ExeBase
26{
27public:
[1274]28 /** @cat Constructor/Destructor */
[1327]29 Win32Pe2LxExe(HINSTANCE hinstance, BOOL fWin32k);
[1274]30 virtual ~Win32Pe2LxExe();
[1327]31 BOOL init();
[953]32};
33
[1274]34
[953]35#endif //__WINEXEPE2LX_H__
Note: See TracBrowser for help on using the repository browser.