c++ - Visual studio 2010 and kernel level programming! -


I have MS Visual Studio 2010 and I'm planning to start the kernel level & amp; I hardware driver programming ..

Can I use MS Studio 2010? If, what exactly is that IDE?

You need to add another way ... if I need to do MS Visual Studio to compile the following code in 2010? And what kind of project should I choose

  #define _X86_ #include "wdm.h" NTSTATUS DriverEntry (in PDRIVER_OBJECT theDriverObject, PUNICODE_STRING theRegistryPath) {DbgPrint ( "Hello World!"); Return STATUS_SUCCESS; }   

Update: thanks guys ... Do I need to add here

compiler and build script DDK you can use any IDE of your choice until it calls DDK build script

Edit:. Btw, should not define your code _X86 _ . The DDK Build Tool will define the right macros related to the target version of Windows.

Comments