1

I need to create a driver that presents itself to Windows as a video capture driver. The driver generates the video itself. How would I go about doing this? And please keep in mind that I'm using Visual C++ Express.

Nathan Osman
  • 71,149
  • 71
  • 256
  • 361

2 Answers2

1

See this :

Virtual WebCam Driver

Community
  • 1
  • 1
Christopher
  • 8,912
  • 3
  • 33
  • 38
0

I'm not sure you can do this with a UMD, so you'll likely need to install the WDK. You probably all ready know this, but writing a driver is a huge undertaking so you should be prepared for that.

Here's a link on writing Windows drivers from MSDN. I'd also suggest you pick up a copy of the Windows Internals book, and check out OSR (and take a class if you can!).

Hope that helps you get started!

mrduclaw
  • 3,965
  • 4
  • 36
  • 37