Function : ID Table

IDDelete - Delete an ID from the specified ID Table.
----------------------------------------------------------------------------------------------------------

#include <idtable.h>

STATUS LNPUBLIC IDDelete(
DHANDLE hTable,
DWORD id,
BOOL far *retfDeleted
);

Description :

This function deletes an ID from the specified ID Table. It returns a BOOL value in the *retfInserted parameter indicating whether or not the note ID was successfully deleted from the ID Table. If the specified ID does not initially reside in the table, FALSE is returned in the *retfDeleted parameter. This function also sets the IDTABLE_MODIFIED flag if the ID was successfully deleted, that is if the returned *retfDeleted value is TRUE.

Parameters :

See Also :

IDCreateTable
----------------------------------------------------------------------------------------------------------