| Line | |
|---|
| 1 | /*
|
|---|
| 2 | *
|
|---|
| 3 | * Project Odin Software License can be found in LICENSE.TXT
|
|---|
| 4 | *
|
|---|
| 5 | */
|
|---|
| 6 | /*
|
|---|
| 7 | * PELDR main exe loader header file
|
|---|
| 8 | *
|
|---|
| 9 | * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
|
|---|
| 10 | *
|
|---|
| 11 | */
|
|---|
| 12 | #ifndef __PE_H__
|
|---|
| 13 | #define __PE_H__
|
|---|
| 14 |
|
|---|
| 15 | extern char szErrorTitle[];
|
|---|
| 16 | extern char szMemErrorMsg[];
|
|---|
| 17 | extern char szFileErrorMsg[];
|
|---|
| 18 | extern char szPEErrorMsg[];
|
|---|
| 19 | extern char szCPUErrorMsg[];
|
|---|
| 20 | extern char szExeErrorMsg[];
|
|---|
| 21 | extern char szInteralErrorMsg[];
|
|---|
| 22 |
|
|---|
| 23 | #define DWORD ULONG
|
|---|
| 24 | #define LPVOID VOID *
|
|---|
| 25 | #define WORD USHORT
|
|---|
| 26 | #define UNALIGNED
|
|---|
| 27 | #define PDWORD DWORD *
|
|---|
| 28 | #define PWORD WORD *
|
|---|
| 29 | #define NTAPI
|
|---|
| 30 | #define BOOLEAN ULONG
|
|---|
| 31 | #define WCHAR USHORT
|
|---|
| 32 | #define HANDLE ULONG
|
|---|
| 33 |
|
|---|
| 34 | #define WIN32API __stdcall
|
|---|
| 35 |
|
|---|
| 36 | #endif // NOIMAGE
|
|---|
| 37 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.