Function : ID Table

IDCreateTable - Creates an ID Table.
----------------------------------------------------------------------------------------------------------

#include <idtable.h>

STATUS LNPUBLIC IDCreateTable(
DWORD Alignment,
DHANDLE far *rethTable);

Description :

This function allocates an empty ID Table, and returns a handle to it.

ID Tables should be released with IDDestroyTable().

Parameters :

Sample Usage :


         if (error_status = IDCreateTable(sizeof(NOTEID),
                                 &arctable_handle))
              goto Exit;
          else
              cleanup_state += FREE_ARCTABLE;


See Also :

IDDelete
----------------------------------------------------------------------------------------------------------