DictionaryEntry STRUC
deSymbolLength db SYMBOLLENGTH
deSymbol db SYMBOLLENGTH dup(?)
dePageNumber dw ?
deAlignByte db ?
DictionaryEntry ENDS
The DictionaryEntry record specifies the name of a public symbol and the location of the object module that contains the definition of the public symbol.
deSymbolLength
Specifies the number of bytes in the character string defining the symbol.
deSymbol
Contains the character string defining the symbol. The string contains exactly the number of bytes specified in the deSymbolLength member.
dePageNumber
Specifies the page number of the object module in which the symbol is defined. The LibraryHeader record is at page 0.
deAlignByte
Contains a trailing null byte used to align the next dictionary entry on a word boundary.