DLL Handle, CBT_Hook

  • Thread starter Thread starter FikiMiki
  • Start date Start date
F

FikiMiki

Hi,
I would like to ask how should I get handle of managed dll library?
I need it to set up CBT_Hook running over different process.

Do I have to use P/Invoke and LoadLibrary/GetProcAddress API functions?
 
I would like to ask how should I get handle of managed dll library?
Marshal.GetHINSTANCE()


I need it to set up CBT_Hook running over different process.

That wont work with a managed module. Implement the hook in native
code instead.



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top