DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T o

⟦cc72bf8a3⟧ TextFile

    Length: 762 (0x2fa)
    Types: TextFile
    Names: »objfile.h«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦3f75c1919⟧ »EurOpenD3/utils/decomp.tar.Z« 
        └─⟦510c4d5ee⟧ 
            └─⟦this⟧ »decomp/objfile.h« 

TextFile

/*
 * Module: objfile.h
 *
 * Author: J. Reuter
 *
 * Declare the global variables in symtab.c
 */

extern char *strtab;		/* pointer to the pool of names */

extern struct nlist *symtab;	/* pointer to the symbol table */
extern int nsym;		/* number of symbol table entries */

extern struct relocation_info *rel; /* pointer to the relocation table */
extern int nrel;		/* number of relocation table entries */

extern char *datatab;		/* pointer to C_DATA (initialized data) */
extern int ndata;		/* size of C_DATA (bytes) */
extern int datoff;		/* offset of C_DATA in object file */

/* declare symtab.c function types */
extern struct relocation_info *relo_next();
extern char *prname();
extern char get_byte();
extern short get_word();
extern long get_long();