 |
SCardListReaderGroups ..msdn Add comment W32 Constants Translate this page |
 |
 |
Provides the list of reader groups that have previously been introduced to the system.
|
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
LONG SCardListReaderGroups(
__in SCARDCONTEXT hContext,
__out LPTSTR mszGroups,
__inout LPDWORD pcchGroups
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE LONG SCardListReaderGroups IN Winscard;
LONG hContext,;
STRING @mszGroups,;
LONG @pcchGroups
|
 |
 |
 |
| Parameters: |
 |
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.
|
 |
 |
| Return value: |
 |
| If the function succeeds, the function returns SCARD_S_SUCCESS (0). |
 |
 |
| Usage: |
 |
nBufsize=128
cBuffer = REPLICATE(CHR(0), nBufsize)
nResult = SCardListReaderGroups(hContext,;
@cBuffer, @nBufsize)
|
 |
 |
| My comment: |
 |
The resource manager context can be set by a previous call to SCardEstablishContext. This parameter cannot be NULL.
See also: SCardListReaders |
 |
 |
| Word Index links for the SCardListReaderGroups : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2008-10-08 15:37:06 | | Modified: | 2008-10-08 15:40:03 | Visited in last 7 days: 10 |