Function : ID Table

IDTableCopy - Copies an ID Table.
----------------------------------------------------------------------------------------------------------

#include <idtable.h>

STATUS LNPUBLIC IDTableCopy(
DHANDLE hTable,
DHANDLE far *rethTable
);

Description :

This function takes an a handle associated with an existing ID Table and returns a new handle of a new ID Table that is a copy of the original. It also sets the IDTABLE_MODIFIED flag in the new ID Table upon successful completion.

Parameters :

Sample Usage :


          if ( error_status = IDTableCopy(idtable_handle,
                                          &cpytable_handle))
              goto Exit;
          else
              cleanup_state += FREE_CPYTABLE;
   


See Also :

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