ixDeleteRecordNums -- Delete a list of record numbers from the index.
void ixDeleteRecordNums(OnixIndexManagerT IndexManager, RecordNumT *RecordNumArray, size_t NumRecords, StatusCodeT *Status);
IndexManager -- An index manager with an open index with a retrieval session in progress.
RecordNumArray -- An array of record numbers to be removed from the index. RecordNumArray is of type RecordNumT. (Generally a unsigned 32 bit integer).
NumRecords -- The number of records numbers in RecordNumArray which are to be removed from the index.
Status -- A pointer to a value of type StatusCodeT. If an error occurs, Status will be set to the appropriate error value.
Nothing.
ixDeleteRecordNums deletes a series of record numbers from the index. The index must be open and a retrieval session in progress otherwise this function will fail. All the record numbers in the array RecordNumArray up to NumRecords will be removed from the index. Note that while the changes to the index take effect immediately, the record numbers are not actually committed to the index until a call to ixCloseIndex() takes place.
ixIsRecordDeleted, ixDeleteRecordNum, ixUnDeleteRecordNum, ixUnDeleteRecordNums, ixOutputDeletedRecords, ixGetNumberOfRecordsDeleted