Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>1999-09-07 07:28:54 +0400
committerIan Lance Taylor <iant@google.com>1999-09-07 07:28:54 +0400
commit4809740b1b7a1aeb77d7bc2447e346ede20556f1 (patch)
tree27a408f12af5d52fc02881bbb067f534af419f2a /include/coff/pe.h
parent6935f65eff3a32d9177af9f35386f7677057ac55 (diff)
1999-09-06 Donn Terry <donn@interix.com>
* internal.h (DTYPE): Define. * pe.h (struct external_PEI_filehdr): Rename from external_PE_filehdr. Define even if COFF_IMAGE_WITH_PE is not defined.
Diffstat (limited to 'include/coff/pe.h')
-rw-r--r--include/coff/pe.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/include/coff/pe.h b/include/coff/pe.h
index 7e676a508..7ea1f6cc3 100644
--- a/include/coff/pe.h
+++ b/include/coff/pe.h
@@ -76,12 +76,7 @@
#undef FILNMLEN
#define FILNMLEN 18 /* # characters in a file name */
-
-#ifdef COFF_IMAGE_WITH_PE
-/* The filehdr is only weired in images */
-
-#undef FILHDR
-struct external_PE_filehdr
+struct external_PEI_filehdr
{
/* DOS header fields */
char e_magic[2]; /* Magic number, 0x5a4d */
@@ -119,12 +114,16 @@ struct external_PE_filehdr
};
+#ifdef COFF_IMAGE_WITH_PE
+
+/* The filehdr is only weird in images */
-#define FILHDR struct external_PE_filehdr
+#undef FILHDR
+#define FILHDR struct external_PEI_filehdr
#undef FILHSZ
#define FILHSZ 152
-#endif
+#endif /* COFF_IMAGE_WITH_PE */
typedef struct
{