diff options
author | Richard Henderson <rth@redhat.com> | 1999-06-03 03:26:17 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-06-03 03:26:17 +0000 |
commit | 1824172ac1256c9bd28b096b1a29fea78bda97c0 (patch) | |
tree | 23ef7312c25c0ca28abc97a456e62362e708c20a /include/coff/internal.h | |
parent | 0910f5ab09b8b15a86fb0b913b0d07c7165d6308 (diff) | |
download | gdb-1824172ac1256c9bd28b096b1a29fea78bda97c0.tar.gz |
* internal.h (BEOS_EXE_IMAGE_BASE, BEOS_DLL_IMAGE_BASE): New.
Diffstat (limited to 'include/coff/internal.h')
-rw-r--r-- | include/coff/internal.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/coff/internal.h b/include/coff/internal.h index d5ea9510334..b01730eadcc 100644 --- a/include/coff/internal.h +++ b/include/coff/internal.h @@ -89,10 +89,14 @@ typedef struct _IMAGE_DATA_DIRECTORY } IMAGE_DATA_DIRECTORY; #define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16 -/* default image base for NT */ +/* Default image base for NT. */ #define NT_EXE_IMAGE_BASE 0x400000 #define NT_DLL_IMAGE_BASE 0x10000000 +/* Default image base for BeOS. */ +#define BEOS_EXE_IMAGE_BASE 0x80000000 +#define BEOS_DLL_IMAGE_BASE 0x10000000 + /* Extra stuff in a PE aouthdr */ #define PE_DEF_SECTION_ALIGNMENT 0x1000 |