views:

38

answers:

1

i want to make screen capture device driver like superwebcam

someone told me easyway is make screen capture source filter and register device driver

this is source fileter http://tmhare.mvps.org/downloads/vcam.zip

and how can i register??

not this regsvr32 xxxxx.ax

A: 

You have to register the filter with IFilterMapper2 and then add a registry key under

CLSID\860BB310-5D01-11d0-BD3B-00A0C911CE86\Instance\{a unique id for your device}

Then you add a String value under your key

CLSID = {The clsid under which you registered your filter}

NB: 860BB310-5D01-11d0-BD3B-00A0C911CE86 == CLSID_VideoInputCategory

Christopher