SCardListReaderGroups function winscard

int SCardListReaderGroups(
  1. int hContext,
  2. Pointer<Utf16> mszGroups,
  3. Pointer<Uint32> pcchGroups
)

The SCardListReaderGroups function provides the list of reader groups that have previously been introduced to the system.

LONG SCardListReaderGroupsW(
  SCARDCONTEXT hContext,
  LPWSTR       mszGroups,
  LPDWORD      pcchGroups
);

Implementation

int SCardListReaderGroups(
        int hContext, Pointer<Utf16> mszGroups, Pointer<Uint32> pcchGroups) =>
    _SCardListReaderGroups(hContext, mszGroups, pcchGroups);