KVCredential
This structure contains a count of the number of credential elements, and a pointer to the first element of the array of individual elements. The structure is initialized by calling fpOpenFile(), and is defined in kvxtract.h
.
typedef struct tag_KVCredential { int itemCount; KVCredentialComponent *items; } KVCredentialRec, *KVCredential;
Member Descriptions
itemCount
|
The number of credentials defined for this file. |
items
|
A pointer to the KVCredentialComponent structure. This structure contains the individual credential elements used to open a protected file. |