|
Posted by Michton on April 16, 2007, 9:47 am
Please log in for more thread options
> Hi MVPs and others friends
>
> Finally, I successed to compile the NullRenderer (thanks to Gary) and
> the CSampleGrabber
> (thanks to
tmchale:http://groups.google.com/group/microsoft.public.windowsce.app.develop...)
>
> I failed to Register NullRenderer and CSampleGrabber. ( Itried also
> the RegSvrCe and the C++ Application)
>
> Some ideas?
> The Return Code for CSampleGrabber is 0x800401f9
> NullRenderer does not even find the Function DllRegisterServer
>
> which is really SAD FOR ME.
>
> So is there some misunderstanding for COM using??
>
> So much efforts !!!
>
> Thank you
ok. I did it
New DEF FILE for CSampleGrabber:
LIBRARY CSampleGrabber.dll
; These exports are necessary in order for com to register the filter
EXPORTS
DllMain PRIVATE
DllGetClassObject PRIVATE
DllCanUnloadNow PRIVATE
DllRegisterServer PRIVATE
DllUnregisterServer PRIVATE
it works.
For NullRend: I just forgot to insert the DEF file into the LINK
settings
Sorry for all these stupid questions.
Now I need to connect them into my graph.
|