Next: struct x1f4_nodeline_type, Previous: struct x1f4_leadnode_type, Up: Application Interface Types [Index]
typedef struct x1f4_linetext_type { struct x1f4_function_type function; const void *context; } x1f4_linetext_type;
The x1f4_linetext_type
record conveniently pairs a function definition
with some pointer and it is used by some of the libaime interfaces to
describe context associated functions (i.e. function requiring an execution
context and the required context).
See Per Function Execution Context.
function
The function
field is the function definition, one requiring some
execution context (the very context
field of this very record).
context
The context
field is the execution context of the function described by
the function
field of this very record.