Function : Text List Manipulation

ListGetSize - Returns the size of a text list.
----------------------------------------------------------------------------------------------------------

#include <textlist.h>

WORD LNPUBLIC ListGetSize(
void far *pList,
BOOL fPrefixDataType);

Description :

This function returns the size of the entire text list, including the Domino data type item prefix (if present) + the size of the LIST header + the size of the array containing offsets to the beginning of each entry, and the text of all entries.

Parameters :

Sample Usage :


  list_size = ListGetSize (list_ptr, prefix_flag);


See Also :

ListAddEntry
----------------------------------------------------------------------------------------------------------