UF_DRF_draft_aid_text_s (view source)
 
Defined in: uf_drf_types.h
 
Also known as:
 
Overview
This is a structure to hold data in TEXT record.


Data Members

num_chars
int
number of characters
The 132 byte maximum line restriction has been removed.
string is available as a legacy variable containing the
line which will still be truncated to 132 bytes.

Please modify your programs to use full_string instead,
since string will be removed in a future NX release.

UF_DRF_free_text will free this string along with other
variables in the UF_DRF_draft_aid_text_info_t structure.

Note that the old limit of MAX_LINE_BUFSIZE is the number of
bytes, NOT the number of characters. In the default C locale
these two values will be the same. However for localized text
in another locale, there will be multibyte characters.

string [ MAX_LINE_BUFSIZE ]
char
Buffer large enough to hold MAX_LINE_NCHARS characters

num_ints
int
string physical length

full_num_chars
int
number of bytes in full string

full_string
char *
full string (not terminated to 132 bytes)