确定驱动程序是否可以处理输入格式

[与此页面关联的功能 “视频压缩管理器”是一项旧功能。 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. 
}