2001-02-04 Philip Blundell <philb@gnu.org>
[binutils.git] / include / coff / go32exe.h
blob5bd26c1340115d58826c64a339f0001305ae03ea
1 /* COFF information for PC running go32. */
3 #define STUBSIZE 2048
5 struct external_filehdr_go32_exe {
6 char stub[STUBSIZE]; /* the stub to load the image */
7 /* the standard COFF header */
8 char f_magic[2]; /* magic number */
9 char f_nscns[2]; /* number of sections */
10 char f_timdat[4]; /* time & date stamp */
11 char f_symptr[4]; /* file pointer to symtab */
12 char f_nsyms[4]; /* number of symtab entries */
13 char f_opthdr[2]; /* sizeof(optional hdr) */
14 char f_flags[2]; /* flags */
17 #undef FILHDR
18 #define FILHDR struct external_filehdr_go32_exe
19 #undef FILHSZ
20 #define FILHSZ STUBSIZE+20