Reputation: 21
I'm using Visual Studio 2010 and my computer is Win 7 and x64. I successfully built a COM object based on DirectShow, it's a virtual camera and now applications like Skype or YahooMessenger can see my virtual webcam. What I'm wondering now is debugging the code by Visual Studio 2010. Any help is appreciated.
Regards
Upvotes: 0
Views: 275
Reputation: 1046
Compile in Debug mode, register your debug build of filter (using regsvr32), go to your project properties -> Debugging and make Command point to the application you want to use your filter in (be it Skype or YM). Then go to Debug -> Start Debugging.
Upvotes: 2