ISCard::get_Status 方法
[ get_Status 方法可用於需求一節中指定的作業系統。 它不適用於 Windows Server 2003 Service Pack 1 (SP1) 及更新版本、Windows Vista、Windows Server 2008 和後續版本的作業系統。 智慧卡模組提供類似的功能。]
語法
HRESULT get_Status(
[out] SCARD_STATES *pStatus
);
參數
-
pStatus [out]
-
狀態變數的指標。
傳回值
方法會傳回下列其中一個可能的值。
傳回碼 | 描述 |
---|---|
|
作業順利完成。 |
|
pStatus參數無效。 |
|
在 pStatus中傳遞不正確的指標。 |
備註
除了上面所列的 COM 錯誤碼之外,如果呼叫智慧卡函式以完成要求,此介面可能會傳回智慧卡錯誤碼。 如需詳細資訊,請參閱 智慧卡傳回值。
範例
下列範例顯示擷取智慧卡的目前狀態。
SCARD_STATES scState;
HRESULT hr;
// Determine the current state of the smart card.
hr = pISCard->get_Status(&scState);
if (FAILED(hr))
{
printf("Failed get_Status\n");
exit(1); // Or other error handling action.
}
// Use the retrieved value. (This example merely displays it.)
switch (scState)
{
case ABSENT:
printf("Absent state\n");
break;
case PRESENT:
printf("Present state\n");
break;
case SWALLOWED:
printf("Swallowed state\n");
break;
case POWERED:
printf("Powered state\n");
break;
case NEGOTIABLEMODE:
printf("Negotiable mode state\n");
break;
case SPECIFICMODE:
printf("Specific mode state\n");
break;
default:
printf("Unexpected state\n");
break;
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 |
Windows XP [僅限傳統型應用程式] |
最低支援的伺服器 |
Windows Server 2003 [僅限桌面應用程式] |
用戶端支援結束 |
Windows XP |
伺服器終止支援 |
Windows Server 2003 |
標頭 |
|
類型程式庫 |
|
DLL |
|
IID |
IID_ISCard定義為 1461AAC3-6810-11D0-918F-00AA00C18068 |
另請參閱