SCardIntroduceReader function winscard

int SCardIntroduceReader(
  1. int hContext,
  2. Pointer<Utf16> szReaderName,
  3. Pointer<Utf16> szDeviceName
)

The SCardIntroduceReader function introduces a new name for an existing smart card reader.

LONG SCardIntroduceReaderW(
  SCARDCONTEXT hContext,
  LPCWSTR      szReaderName,
  LPCWSTR      szDeviceName
);

Implementation

int SCardIntroduceReader(int hContext, Pointer<Utf16> szReaderName,
        Pointer<Utf16> szDeviceName) =>
    _SCardIntroduceReader(hContext, szReaderName, szDeviceName);