MsiUseFeatureA 函式 (msi.h)
MsiUseFeature 函式會遞增特定功能的使用量計數,並指出該功能的安裝狀態。 此函式應該用來指出應用程式使用功能的目的。
語法
INSTALLSTATE MsiUseFeatureA(
[in] LPCSTR szProduct,
[in] LPCSTR szFeature
);
參數
[in] szProduct
指定擁有所要使用的功能之產品的產品代碼。
[in] szFeature
識別要使用的功能。
傳回值
值 | 意義 |
---|---|
|
未安裝此功能。 |
|
此功能已公告 |
|
組態數據已損毀。 |
|
無效的函式自變數。 |
|
此功能已安裝在本機,可供使用。 |
|
此功能是從來源安裝,可供使用。 |
|
此功能未發佈。 |
備註
MsiUseFeature 函式應該只用於已知發行的功能。 INSTALLSTATE_UNKNOWN表示程序嘗試使用未發行的功能。 應用程式應該藉由呼叫 MsiQueryFeatureState 或 MsiEnumFeatures 來判斷功能是否在呼叫 MsiUseFeature 之前發佈。 應用程式在初始化時應該進行這些呼叫。 應用程式應該只使用已知已發佈的功能。
注意
msi.h 標頭會將 MsiUseFeature 定義為別名,根據 UNICODE 預處理器常數的定義,自動選取此函式的 ANSI 或 Unicode 版本。 混合使用編碼中性別名與非編碼中性的程序代碼,可能會導致編譯或運行時間錯誤不符。 如需詳細資訊,請參閱 函式原型的慣例。
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | Windows Server 2012、Windows 8、Windows Server 2008 R2 或 Windows 7 上的 Windows Installer 5.0。 Windows Server 2008 或 Windows Vista 上的 Windows Installer 4.0 或 Windows Installer 4.5。 Windows Server 2003 或 Windows XP 上的 Windows Installer。 如需 Windows Installer 版本所需的最低 Windows Service Pack 相關信息,請參閱 Windows Installer Run-Time 需求。 |
目標平台 | Windows |
標頭 | msi.h |
程式庫 | Msi.lib |
Dll | Msi.dll |