source: trunk/include/winexepeldr.h@ 1566

Last change on this file since 1566 was 1284, checked in by sandervl, 26 years ago

Console fixes

File size: 878 bytes
RevLine 
[1284]1/* $Id: winexepeldr.h,v 1.2 1999-10-14 09:58:10 sandervl Exp $ */
[953]2
3/*
4 * Win32 PE loader 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 __WINEXEPELDR_H__
13#define __WINEXEPELDR_H__
14
15#include <winexebase.h>
16#include <winimagepeldr.h>
17
18typedef BOOL (* WIN32API WIN32CTOR)(char *, ULONG);
19
20//Class for executables run by the ring 3 PE loader
21class Win32PeLdrExe : public Win32PeLdrImage, public Win32ExeBase
22{
23public:
24 Win32PeLdrExe(char *szFileName);
25virtual ~Win32PeLdrExe();
26
[1284]27virtual BOOL init(ULONG reservedMem);
28
[953]29protected:
30private:
31};
32
33extern char szErrorTitle[];
34extern char szMemErrorMsg[];
35extern char szFileErrorMsg[];
36extern char szPEErrorMsg[];
37extern char szCPUErrorMsg[];
38extern char szExeErrorMsg[];
39extern char szInteralErrorMsg[];
40
41#endif //__WINEXEPELDR_H__
Note: See TracBrowser for help on using the repository browser.