Win32 SmartDevice DLL项目 - VS 2008
我正在尝试使用ICaptureGraphBuilder2
界面,但是当我尝试使用以下代码创建istance时:
CComPtr<ICaptureGraphBuilder2> pCaptureGraphBuilder;
hr = pCaptureGraphBuilder.CoCreateInstance(CLSID_CaptureGraphBuilder);
hr
是0x80040154
。
我该如何解决这个问题?
答案 0 :(得分:1)
最有可能的是,Capture Graph Builder(CLSID_CaptureGraphBuilder
和CLSID_CaptureGraphBuilder2
)在Windows Mobile中不可用。它仅适用于桌面版。
错误代码为0x80040154
= REGDB_E_CLASSNOTREG
“未注册的课程”。
Windows Mobile / CE中只有一部分API。