SCardListReadersWithDeviceInstanceId function winscard
The SCardListReadersWithDeviceInstanceId function gets the list of readers that have provided a device instance identifier. This function does not affect the state of the reader.
LONG SCardListReadersWithDeviceInstanceIdW(
SCARDCONTEXT hContext,
LPCWSTR szDeviceInstanceId,
LPWSTR mszReaders,
LPDWORD pcchReaders
);
Implementation
int SCardListReadersWithDeviceInstanceId(
int hContext,
Pointer<Utf16> szDeviceInstanceId,
Pointer<Utf16> mszReaders,
Pointer<Uint32> pcchReaders) =>
_SCardListReadersWithDeviceInstanceId(
hContext, szDeviceInstanceId, mszReaders, pcchReaders);