Inject ? a Compact Framework DLL

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way for me to get a Compact Framework DLL loaded into the process
space of another compact Framework application (without loading it from the
app) - similar to injecting a normal C++ DLL into an application. The
purpose of this is so that my injected DLL can use IMessageFilter to capture
messages from an application's message pump
 
Thanks Alex. Following your feedback I have looked at NativeWindow but the
drawback I see is that I would have to create a handler for every Window the
application creates whereas I could somehow inject my CF DLL that implemented
an IMessageFilter interface so I could interecept all application events.
 
Back
Top