BcdBindDefs.Mesa
last edited by Satterthwaite on November 23, 1982 9:43 am
last edited by Lewis on 15-Dec-80 17:57:01
Last Edited by: Maxwell, August 4, 1983 9:28 am
Last Edited by: Paul Rovner, September 8, 1983 5:37 pm
DIRECTORY
BcdDefs: TYPE USING [IMPIndex],
PrincOps: TYPE USING [GFTIndex],
Symbols: TYPE USING [CXIndex],
Tree: TYPE USING [Link];
BcdBindDefs: DEFINITIONS={
RelocType: TYPE~{outer, inner, file};
Relocations: TYPE~RECORD [
link: RelocHandle,
type: RelocType,
firstgfi, originalfirstdummy: PrincOps.GFTIndex,
dummygfi: CARDINAL,
lastgfi: PrincOps.GFTIndex,
import, module, config: CARDINAL,
importLimit: BcdDefs.IMPIndex,
context, parentcx: Symbols.CXIndex,
textIndex: CARDINAL,
parameters: Tree.Link];
RelocHandle: TYPE~REF Relocations;
}.