SCardIntroduceReaderGroup function winscard

int SCardIntroduceReaderGroup(
  1. int hContext,
  2. Pointer<Utf16> szGroupName
)

The SCardIntroduceReaderGroup function introduces a reader group to the smart card subsystem. However, the reader group is not created until the group is specified when adding a reader to the smart card database.

LONG SCardIntroduceReaderGroupW(
  SCARDCONTEXT hContext,
  LPCWSTR      szGroupName
);

Implementation

int SCardIntroduceReaderGroup(int hContext, Pointer<Utf16> szGroupName) =>
    _SCardIntroduceReaderGroup(hContext, szGroupName);