vote up 1 vote down star

How would I go about calling a dll from kernel mode? I have tried making a custom lib file using multiple techniques but I cannot get anything to work. I have also researched on google but cannot seem to find anything. I was also curious if it was possible to create entries in the import addres table from c++ or at link time? Thanks for the help!

flag

71% accept rate

1 Answer

vote up 2 vote down

The fundamental issue for a DLL in kernel mode is whether the DLL calls any user-mode code. If a DLL contains anything other than native kernel API calls, you'll get linker errors if you try to link your driver with it when you build (and the kernel wouldn't load it anyway)

check the following link Calling a DLL in a Kernel-Mode Driver

Edit:

Another useful link

DLLs in Kernel Mode Tim Roberts

link|flag
The dll is BOOTVID.DLL which is part of windows. I cannot find any lib for it because it is only used internally. – workinprogress Aug 17 at 5:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.