WINTRUST_SIP_DISPATCH_TABLE
[New
- Windows NT]
The WINTRUST_SIP_DISPATCH_TABLE
structure contains pointers to a set of functions implemented by a Subject
Interface Package (SIP) to be called by WinTrust.
A pointer to
this dispatch table is passed to WinTrust by the SIP s WinTrustSipInitialize
typedef struct _WINTRUST_SIP_DISPATCH_TABLE
{
LPWINTRUST_SUBJECT_CHECK_CONTENT_INFO
CheckSubjectContentInfo;
LPWINTRUST_SUBJECT_ENUM_CERTIFICATES
EnumSubjectCertificates;
LPWINTRUST_SUBJECT_GET_CERTIFICATE
GetSubjectCertificate;
LPWINTRUST_SUBJECT_GET_CERT_HEADER
GetSubjectCertHeader;
LPWINTRUST_SUBJECT_GET_NAME
GetSubjectName;
} WINTRUST_SIP_DISPATCH_TABLE,
*LPWINTRUST_SIP_DISPATCH_TABLE;
Members
CheckSubjectContentInfo
Pointer to a WinTrustSubjectCheckContentInfo
EnumSubjectCertificates
Pointer to a WinTrustSubjectEnumCertificates
GetSubjectCertificate
Pointer to a WinTrustSubjectGetCertificate
GetSubjectCertHeader
Pointer to a WinTrustSubjectGetCertHeader
GetSubjectName
Pointer to a WinTrustSubjectGetCertHeader
See Also