 |
Index for Section 3 |
|
 |
Alphabetical listing for D |
|
 |
Bottom of page |
|
DL_DataDelete(3)
NAME
DL_DataDelete, CSSM_DL_DataDelete - Remove data record (CDSA)
SYNOPSIS
#include <cdsa/cssm.h>
API:
CSSM_RETURN CSSMAPI CSSM_DL_DataDelete
(CSSM_DL_DB_HANDLE DLDBHandle,
const CSSM_DB_UNIQUE_RECORD *UniqueRecordIdentifier)
SPI:
CSSM_RETURN CSSMDLI DL_DataDelete
(CSSM_DL_DB_HANDLE DLDBHandle,
const CSSM_DB_UNIQUE_RECORD *UniqueRecordIdentifier)
LIBRARY
Common Security Services Manager library (libcssm.so)
PARAMETERS
DLDBHandle (input)
The handle pair that describes the add-in data storage library
module to be used to perform this function and the open data store
from which to delete the specified data record.
UniqueRecordIdentifier (input)
A pointer to a CSSM_DB_UNIQUE_RECORD identifier containing unique
identification of the data record to be deleted from the data
store. Once the associated record has been deleted, this unique
record identifier cannot be used in future references, except as an
argument to DL_FreeUniqueRecord() which must still be called.
DESCRIPTION
This function removes the data record specified by the unique record
identifier from the specified data store.
RETURN VALUE
A CSSM_RETURN value indicating success or specifying a particular error
condition. The value CSSM_OK indicates success. All other values represent
an error condition.
ERRORS
Errors are described in the CDSA technical standard. See CDSA_intro(3).
CSSMERR_DL_INVALID_DB_HANDLE
CSSMERR_DL_INVALID_RECORD_UID
CSSMERR_DL_RECORD_NOT_FOUND
SEE ALSO
Books
Intel CDSA Application Developer's Guide (see CDSA_intro(3))
Reference Pages
Functions for the CSSM API:
CSSM_DL_DataInsert(3)
Functions for the DL SPI:
DL_DataInsert(3)
 |
Index for Section 3 |
|
 |
Alphabetical listing for D |
|
 |
Top of page |
|