UF_DRF_draft_aid_text_s (view source)
Defined in: uf_drf_types.h
Also known as:
- UF_DRF_draft_aid_text_t
- UF_DRF_draft_aid_text_p_t
Overview
This is a structure to hold data in TEXT record.
Data Members
num_chars
int
string [ MAX_LINE_LENGTH+1 ]
char
num_ints
int
full_num_chars
int
full_string
char *
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_LENGTH 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.