Does kernel mode support dll which export a class?

  • Thread starter Thread starter george
  • Start date Start date
G

george

Does kernel mode dll support export a class?
Who can give me an sample or document?
Thanks very much.
 
Given that I grok your question, a kernel mode DLL is a DLL, which means you
can create an import lib and link it with another kernel mode component. You
CANNOT, however expect to link an application with that import lib. The best
means of doing this however is via a registered interface for your driver,
which another driver then requests via a GUID.

As I said ... if I grok your question.
 
Back
Top