Rev | Line | |
---|
[9667] | 1 | /* $Id: winexepeldr.h,v 1.9 2003-01-13 16:51:40 sandervl Exp $ */
|
---|
[3074] | 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 |
|
---|
[21916] | 15 | #include "winexebase.h"
|
---|
| 16 | #include "winimagepeldr.h"
|
---|
[3074] | 17 |
|
---|
| 18 | //Class for executables run by the ring 3 PE loader
|
---|
| 19 | class Win32PeLdrExe : public Win32PeLdrImage, public Win32ExeBase
|
---|
| 20 | {
|
---|
| 21 | public:
|
---|
[4440] | 22 | Win32PeLdrExe(char *szFileName, BOOL fConsoleApp);
|
---|
[3074] | 23 | virtual ~Win32PeLdrExe();
|
---|
| 24 |
|
---|
[9667] | 25 | virtual ULONG getDefaultStackSize();
|
---|
| 26 |
|
---|
[3074] | 27 | protected:
|
---|
| 28 | private:
|
---|
| 29 | };
|
---|
| 30 |
|
---|
| 31 | extern char szErrorTitle[];
|
---|
| 32 | extern char szMemErrorMsg[];
|
---|
| 33 | extern char szFileErrorMsg[];
|
---|
| 34 | extern char szPEErrorMsg[];
|
---|
| 35 | extern char szCPUErrorMsg[];
|
---|
| 36 | extern char szExeErrorMsg[];
|
---|
| 37 | extern char szInteralErrorMsg[];
|
---|
| 38 |
|
---|
[3375] | 39 | extern BOOL fPeLoader;
|
---|
| 40 |
|
---|
[3074] | 41 | #endif //__WINEXEPELDR_H__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.