Group: Authentication - Library: winscard
Smart Card Database Query Functions
LONG SCardListReaderGroups(
__in SCARDCONTEXT hContext,
__out LPTSTR mszGroups,
__inout LPDWORD pcchGroups
);
DECLARE LONG SCardListReaderGroups IN Winscard;
LONG hContext,;
STRING @mszGroups,;
LONG @pcchGroups
hContext [in] Handle that identifies the resource manager context for the query.
mszGroups [out] Multi-string that lists the reader groups defined to the system and available to the current user on the current terminal.
pcchGroups [in, out] Length of the mszGroups buffer in characters, and receives the actual length of the multi-string structure, including all trailing null characters.
If the function succeeds, the function returns SCARD_S_SUCCESS (0).
The resource manager context can be set by a previous call to SCardEstablishContext. This parameter cannot be NULL.
See also: SCardListReaders.