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 >
Wrap
Text File
|
1998-01-03
|
941b
|
30 lines
/* mac06ゥ1997 by HNS/DSITRI hns@computer.org
** aouthdr.h
*/
#ifdef __SC__ /* Symantec C++ for PowerPC 8.0 */
#pragma options align=mac68k
#endif
struct aouthdr {
short magic; /* magic number -- see below */
short vstamp; /* artefacts from a by-gone era */
long tsize; /* text section size */
long dsize; /* data section size */
long bsize; /* bss section size*/
long entry; /* Entry point -- offset into file */
long text_start; /* artefacts from a by-gone era */
long data_start; /* artefacts from a by-gone era */
long flags; /* artefacts from a by-gone era */
};
#define AOUTHDR struct aouthdr
#define AOUTSZ sizeof(AOUTHDR)
#define AOUT_MAGIC 0413
#ifdef __SC__
#pragma options align=reset
#endif
/* EOF */