Win32 SmartDevice DLL项目-VS 2008

我正在尝试使用ICaptureGraphBuilder2接口(interface),但是当我尝试使用以下代码创建该距离时:

CComPtr<ICaptureGraphBuilder2> pCaptureGraphBuilder;
hr = pCaptureGraphBuilder.CoCreateInstance(CLSID_CaptureGraphBuilder);
hr0x80040154

我怎么解决这个问题?

最佳答案

最有可能的是,Capture Graph Builder(CLSID_CaptureGraphBuilderCLSID_CaptureGraphBuilder2)在Windows Mobile中不可用。它仅在台式机上可用。

错误代码为0x80040154 = REGDB_E_CLASSNOTREG“类未注册”。

Windows Mobile / CE中只有一部分API。

09-05 23:51