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

    Anybody know how to make a program for Win API hook?

    N/A


  2. #2
    Join Date
    May 1999
    Posts
    53

    *Look on CodeGuru, there's an example there of using hooks

    * means no text


  3. #3
    Guest

    Re: I said to make a trap for any windows api function (such as GetLocalTime).

    No content


  4. #4
    Join Date
    May 1999
    Posts
    53

    Re: I said to make a trap for any windows api function (such as GetLocalTime).

    Ohh, I misunderstood. I don't think there's any way to do this, but it might be possible to revector
    the Win32 API interrupt (if it uses one) and do stuff, or maybe even modify KERNEL32.DLL/USER.EXE/GDI.EXE.


  5. #5
    Guest

    Re: I said to make a trap for any windows api function (such as GetLocalTime).

    It seems, you donot know microsoft have a sample PROCHOOK, it use for hook any API function, but it for win16 not win32. In fact, it insert a JUMP XXXXX before entry of API function.


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