Initial Release 4.0

Function : Text List Manipulation
ListRemoveAllEntries - Remove all entries from a text list.
----------------------------------------------------------------------------------------------------------

#include <textlist.h>

STATUS LNPUBLIC ListRemoveAllEntries(
DHANDLE hList,
BOOL fPrefixDataType,
WORD far *pListSize);

Description :

Remove all the entries from the text list. During the removal process, the Domino memory object containing the list is re-allocated and the size will be reduced to the minimum size for a text list. If you had previously locked the list handle to obtain a pointer to the text list, be aware that this pointer may no longer valid after calling ListRemoveAllEntries(). You must unlock the list handle and then re-lock the list handle after the call to ListRemoveAllEntries(), if you need to reference the pointer to the text list.

Parameters :

See Also :

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