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
/
reloc.h
< prev
next >
Wrap
Text File
|
1997-11-01
|
540b
|
32 lines
/* mac06ゥ1997 by HNS/DSITRI hns@computer.org
** reloc.h
*/
#ifdef __SC__ /* Symantec C++ for PowerPC 8.0 */
#pragma options align=mac68k
#endif
struct reloc
{
long r_vaddr; /* address of reference */
long r_symndx; /* index into symbol table */
unsigned short r_type; /* relocation type */
};
enum reloc_flags
{
R_LBYTE = 0,
R_HBYTE = 1,
R_WORD = 2,
R_LONG = 3,
R_BRANCH
};
#define RELOC struct reloc
#define RELSZ sizeof(RELOC)
#ifdef __SC__ /* Symantec C++ for PowerPC 8.0 */
#pragma options align=reset
#endif
/* EOF */