Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Writing Windows Device Drivers with C

Status
Not open for further replies.

mrgruve

Vendor
Feb 19, 2002
6
0
1
US
Has anyone ever used C to write device drivers? Are there any "to the point" tutorials or books on using C to write device drivers? Any help at all will be appreciated.
 
Yes: one of the nice features of C is void*. You can put anything there and get anything out. Very error prone but absolutely brilliant for device drivers.

Try This is for Linux.

Basically the API requires a few entry points: attach, open, read, write, close, detach, misc. Some don't have attach and detach.
 
thanks for the info, xwb. gonna check out the link you provided. will let you know how things are progressing.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top