views:

130

answers:

3

I've never written drivers before but I'm starting an open-source project that involves creating virtual MIDI ports that will send the MIDI data over a network.

For this, I presume I would be creating some sort of virtual driver using WDM (unless it's possible with kernel hooks?) - but being a beginner to driver development I don't know where to begin.

Does anyone know any useful resources that would help me with this project? Or some open-source code from a similar project that I could fork as a starting point?

+2  A: 

Check out the Dokan project, it is doing something similar (but with a File System virtual driver).

When you want to create a new file system on Windows, for example to improve FAT or NTFS, you need to develop a file system driver.

Developing a device driver that works in kernel mode on windows is extremely difficult.By using Dokan library, you can create your own file systems very easily without writing device driver.

Dokan Library is similar to FUSE(Linux user mode file system) but works on Windows.

GalacticJello
+1  A: 

Here is good resources compilation on driver development under WDM

Vadmyst
A: 

google tiamodisk...an excellent eg. of a virtual SCSI miniport driver. another virtual driver I know is "Filedisk". if u want tiamodisk I can e-mail

bakra