PxeProviderQueryIndex 函式 (wdspxe.h)
傳回已註冊提供者清單中的指定提供者索引。
語法
DWORD PXEAPI PxeProviderQueryIndex(
[in] LPCWSTR pszProviderName,
[out] PULONG puIndex
);
參數
[in] pszProviderName
從 呼叫 PxeProviderRegister 函式的提供者易記名稱。
[out] puIndex
將接收提供者索引的 ULONG 位址。
傳回值
如果函式成功,傳回值 會ERROR_SUCCESS。
備註
如果提供者想要以特定順序插入已註冊的提供者清單中,也就是想要在特定提供者 () 之前或之後服務用戶端要求,它可以查詢另一個提供者的索引,然後使用傳回的索引來決定自己的位置。
範例
//
// Suppose Provider wants to handle requests after BINLSVC has rejected them.
//
dwError = PxeProviderQueryIndex(L"BINLSVC", &Index);
if (dwError == ERROR_SUCCESS)
{
if (PxeProviderRegister(L"MYPROV",
L"C:\\MyDir\\MyProv.DLL",
PXE_REG_INDEX_BOTTOM,
Index + 1, // Add after BINLSVC
&hKey) != ERROR_SUCCESS)
{
// Handle Error
}
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | 都不支援 |
最低支援的伺服器 | Windows Server 2008、Windows Server 2003 SP2 [僅限桌面應用程式] |
目標平台 | Windows |
標頭 | wdspxe.h |
程式庫 | WdsPxe.lib |
Dll | WdsPxe.dll |