Click here to Skip to main content
15,883,606 members
Articles / Programming Languages / C

Building and deploying a basic WDF Kernel Mode Driver

Rate me:
Please Sign up or sign in to vote.
4.94/5 (55 votes)
20 Apr 2006MIT25 min read 451.5K   5.2K   205  
An article about developing a driver for the WDF Kernel Mode Driver Foundation.
// {EDCCB7CD-86AC-485e-B30C-83AA7C26EF0C}
DEFINE_GUID(GUID_DEV_IF_BASIC, 
0xedccb7cd, 0x86ac, 0x485e, 0xb3, 0xc, 0x83, 0xaa, 0x7c, 0x26, 0xef, 0xc);

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer
Belgium Belgium
I am a former professional software developer (now a system admin) with an interest in everything that is about making hardware work. In the course of my work, I have programmed device drivers and services on Windows and linux.

I have written firmware for embedded devices in C and assembly language, and have designed and implemented real-time applications for testing of satellite payload equipment.

Generally, finding out how to interface hardware with software is my hobby and job.

Comments and Discussions