t_aqueue

Element of sorted data aqueue. Describes module which analysis was postponed. If automatic analysis is not required, request may be ignored.

typedef struct t_aqueue {       // Descriptor of module to be analysed
  ulong base;                   // Base address of module
  ulong size;                   // Size of memory occupied by module
  ulong type;                   // Service information, TY_xxx+MOD_xxx
} t_aqueue;


Members:

base
Base address of the module
size
Size of memory occupied by the module, or 1 if module size is not yet known
type
Module type, set of flags TY_xxx and MOD_xxx, see t_module for details

See also:
t_module