SCardListInterfaces function winscard

int SCardListInterfaces(
  1. int hContext,
  2. PCWSTR szCard,
  3. Pointer<GUID> pguidInterfaces,
  4. Pointer<Uint32> pcguidInterfaces,
)

Provides a list of interfaces supplied by a given card.

To learn more, see learn.microsoft.com/windows/win32/api/winscard/nf-winscard-scardlistinterfacesw.

Implementation

@pragma('vm:prefer-inline')
int SCardListInterfaces(
  int hContext,
  PCWSTR szCard,
  Pointer<GUID> pguidInterfaces,
  Pointer<Uint32> pcguidInterfaces,
) => _SCardListInterfaces(hContext, szCard, pguidInterfaces, pcguidInterfaces);