home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1999 February / MACPOWER-1999-02.ISO.7z / MACPOWER-1999-02.ISO / 9902⁄AMUG / UTILITY / mac06-0.95.sit / mac06-0.95 / usr / include / coff / aouthdr.h next >
Text File  |  1998-01-03  |  941b  |  30 lines

  1. /* mac06ゥ1997 by HNS/DSITRI hns@computer.org
  2. ** aouthdr.h
  3. */
  4.  
  5. #ifdef __SC__    /* Symantec C++ for PowerPC 8.0 */
  6. #pragma options align=mac68k
  7. #endif
  8.  
  9. struct aouthdr {
  10.         short magic;                    /* magic number -- see below */
  11.         short vstamp;                   /* artefacts from a by-gone era */
  12.         long tsize;                     /* text section size */
  13.         long dsize;                     /* data section size */
  14.         long bsize;                     /* bss section size*/
  15.         long entry;                     /* Entry point -- offset into file */
  16.         long text_start;                /* artefacts from a by-gone era */
  17.         long data_start;                /* artefacts from a by-gone era */
  18.         long flags;                        /* artefacts from a by-gone era */
  19. };
  20.  
  21. #define    AOUTHDR struct aouthdr
  22. #define    AOUTSZ sizeof(AOUTHDR)
  23.  
  24. #define AOUT_MAGIC    0413
  25.  
  26. #ifdef __SC__
  27. #pragma options align=reset
  28. #endif
  29.  
  30. /* EOF */