CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8

Threaded View

  1. #6
    Join Date
    May 1999
    Location
    ALABAMA, USA
    Posts
    9,917
    You have made several mistakes; find all doing comparison. I have also added dialog to demonstrate how process hook messages.

    Most significant export, and setting thread ID.

    Hook should notify application about events by posting (important!) messages should application act on certain messages. DLL should perform needed filtering itself.

    I have defined couple of messages for that reason. You could use RegisterWindowMessage but since we know what window messages are sent I do not think that would be necessary.
    Attached Files Attached Files
    There are only 10 types of people in the world:
    Those who understand binary and those who do not.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured