Hello
I want to write a minimal Kernel Mode driver that registers a bugcheck callback and implements that callback. Can someone suggest a minimal driver skeleton - which I can build upon for my purposes?
Thanks
Srikanth
“The minimal driver skeleton” is just DriverEntry() routine that returns 0 - this is the only thing that
any driver is required to do. Concerning your question about KeRegisterBugcheck() you can check the following threads:.
http://www.osronline.com/showThread.cfm?link=10280
http://www.osronline.com/showThread.cfm?link=10239
Anton Bassov