// smclib.h
typedef struct _SMARTCARD_REPLY {
PUCHAR Buffer;
ULONG BufferSize;
ULONG BufferLength;
} SMARTCARD_REPLY, *PSMARTCARD_REPLY;
View the official Windows Driver Kit DDI referenceNo description available.
Describes the reply buffer received from the smart card.
BufferPointer to a buffer that receives smart card data.
BufferSizeSize of the buffer pointed to by Buffer.
BufferLengthNumber of bytes received from the card.
The client driver must receive data in this buffer and adjust BufferLength to the number of received bytes.