Function : ID Table

IDTableSetFlags - Sets the Flag information of an ID Table.
----------------------------------------------------------------------------------------------------------

#include <idtable.h>

void LNPUBLIC IDTableSetFlags(
void far *pIDTable,
WORD Flags);

Description :

This function sets the Flag information of an ID Table. See the IDTABLE_xxx symbols for further information.

Parameters :

Sample Usage :


  if (IDTableFlags(idtable_ptr) & IDTABLE_MODIFIED)

      /* Well we didn't,so NSFDbGetModifiedNoteTable() must have */
      /* Will clear modified flag for our own puposes            */

      IDTableSetFlags(idtable_ptr, 0);


See Also :

IDTableFlags
----------------------------------------------------------------------------------------------------------