SCardIntroduceReaderGroupA 函式 (winscard.h)
SCardIntroduceReaderGroup 函式會將 讀取器群組 導入 智慧卡 子系統。 不過,在將讀取器新增至 智慧卡資料庫時,不會建立讀取器群組。
語法
LONG SCardIntroduceReaderGroupA(
[in] SCARDCONTEXT hContext,
[in] LPCSTR szGroupName
);
參數
[in] hContext
提供句柄,識別資源管理員內容
[in] szGroupName
提供要指派給新讀取器群組的顯示名稱。
傳回值
此函式會根據它是否成功或失敗,傳回不同的值。
傳回碼 | 描述 |
---|---|
|
SCARD_S_SUCCESS。 |
|
錯誤碼。 如需詳細資訊,請參閱 |
言論
SCardIntroduceReaderGroup 函式會提供電腦/SC 規格相容性。 在將讀取器新增至群組之前,不會儲存讀取器群組。
SCardIntroduceReaderGroup 函式是資料庫管理功能。 如需其他資料庫管理功能的描述,請參閱 智慧卡資料庫管理功能。
若要移除讀取器群組,請使用 SCardForgetReaderGroup。
例子
下列範例顯示智慧卡卡片閱讀機群組簡介。
// Introduce the reader group.
// lReturn is of type LONG.
// hContext was set by a previous call to SCardEstablishContext.
lReturn = SCardIntroduceReaderGroup(hContext,
L"MyReaderGroup");
if ( SCARD_S_SUCCESS != lReturn )
printf("Failed SCardIntroduceReaderGroup\n");
注意
winscard.h 標頭會根據 UNICODE 預處理器常數的定義,將 SCardIntroduceReaderGroup 定義為自動選取此函式的 ANSI 或 Unicode 版本。 混合使用編碼中性別名與非編碼中性的程序代碼,可能會導致編譯或運行時間錯誤不符。 如需詳細資訊,請參閱函式原型的
要求
要求 | 價值 |
---|---|
最低支援的用戶端 | Windows XP [僅限傳統型應用程式] |
支援的最低伺服器 | Windows Server 2003 [僅限傳統型應用程式] |
目標平臺 | 窗戶 |
標頭 | winscard.h |
連結庫 | Winscard.lib |
DLL | Winscard.dll |