SCardListInterfaces function winscard
The SCardListInterfaces function provides a list of interfaces supplied by a given card. The caller supplies the name of a smart card previously introduced to the subsystem, and receives the list of interfaces supported by the card.
LONG SCardListInterfacesW(
SCARDCONTEXT hContext,
LPCWSTR szCard,
LPGUID pguidInterfaces,
LPDWORD pcguidInterfaces
);
Implementation
int SCardListInterfaces(
int hContext,
Pointer<Utf16> szCard,
Pointer<GUID> pguidInterfaces,
Pointer<Uint32> pcguidInterfaces,
) => _SCardListInterfaces(hContext, szCard, pguidInterfaces, pcguidInterfaces);