Type of reference descriptor.
typedef struct t_ref { // Description of reference
ulong addr; // Address of reference
ulong size; // 1: single command, otherwise size
ulong type; // Type of reference, TY_xxx
ulong dest; // Destination of call
} t_ref;
Members:
addr - address of referencing command or data;
size - 1 if single command is referenced, or total size, bytes, of selected commands otherwise;
type - type of reference, combination of TY_xxx flags:
TY_REFERENCE | Item is a real reference |
TY_ORIGIN | Item is a search origin |
dest - destination of intermodular call, 0 for any other reference.