FTAM/9000 Programmer's Guide

156 Chapter 3
HP FTAM/9000 Data Structures
inout_dcb
inout_dcb
You receive large amounts of data from the FTAM interface. To reduce
the number of exposed parameters, Ft_output and Ft_xxx_out_dcb
contain a group of parameters. The xxx varies, depending on the function
(e.g., Ft_rdata_out_dcb). Except for size, all inout_dcb parameters are
output parameters.
Ft_output
struct Ft_output {
Uint32 size;
struct Api_rc result;
};
You must either pass the address of an Ft_output or you must pass the
address of a NULL value. If you pass the address of an Ft_output, you
must have enough memory to return size and result.
Ft_output Is Input To These
Functions
Ft_output Is Output From
These Functions
Only the Ft_output size
parameter and only if you use
Ft_output in those calls listed in
the output column
ft_abort()
ft_aeactivation()
ft_aedeactivation()
ft_aereset()
size The size of the Ft_output structure and associated data
in Octets. The size parameter is mandatory input if
using Ft_output.
result The result is of type Api_rc and provides error
information.