SCardGetReaderIcon function winscard

int SCardGetReaderIcon(
  1. int hContext,
  2. PCWSTR szReaderName,
  3. Pointer<Uint8> pbIcon,
  4. Pointer<Uint32> pcbIcon,
)

Gets an icon of the smart card reader for a given reader's name.

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

Implementation

@pragma('vm:prefer-inline')
int SCardGetReaderIcon(
  int hContext,
  PCWSTR szReaderName,
  Pointer<Uint8> pbIcon,
  Pointer<Uint32> pcbIcon,
) => _SCardGetReaderIcon(hContext, szReaderName, pbIcon, pcbIcon);