Function : ID Table

IDEntries - Returns the number of note IDs in the specified ID Table.
----------------------------------------------------------------------------------------------------------

#include <idtable.h>

DWORD LNPUBLIC IDEntries(
DHANDLE hTable
);

Description :

This function takes a handle to an ID Table and returns the number of IDs in the ID Table.

Parameters :

Sample Usage :


              /* Some demographics */

              num_entries = IDEntries(arctable_handle);
              printf("Analysis of Notes between begin & end:\n");
              printf("\n# of Entries in idtable = %lu\n",
                      notes_scanned);
              printf("# of Entries in arctable = %lu\n",
                      num_entries);


See Also :

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