判斷驅動程式是否可以處理輸入格式
[與此頁面相關的功能影片 壓縮管理員是舊版功能。 Microsoft 強烈建議新程式碼不使用此功能。]
下列範例示範如何使用 ICDrawQuery 宏檢查輸入格式。
// lpbiIn points to BITMAPINFOHEADER structure indicating the input
// format.
if (ICDrawQuery(hIC, lpbiIn) == ICERR_OK)
{
// Driver recognizes the input format.
}
else
{
// Need a different decompressor.
}