Search:

Type: Posts; User: Nota

Search: Search took 0.01 seconds.

  1. Replies
    35
    Views
    66,635

    DLLMain() is the control function...

    DLLMain() is the control function (loading/finishing/thread support... events handler, so it's called on every of those events) for every DLL. Every new thread calls the DllMain() of every DLL...
  2. Replies
    35
    Views
    66,635

    Other way to do it can be by hooking every thread...

    Other way to do it can be by hooking every thread creation through a DLL (when DllMain() receives a DLL_THREAD_ATTACH event in BobS0327's way) and just check if the thread was own created or was...
  3. Replies
    20
    Views
    13,830

    Yap, that's what i thought first too, but then i...

    Yap, that's what i thought first too, but then i went into winapi documentation. http://msdn.microsoft.com/en-us/library/ms644944(VS.85).aspx It seems to work with threads, so... I'm lost.
    By the...
  4. Replies
    20
    Views
    13,830

    Thank u all for your help! Specially to abachler...

    Thank u all for your help! Specially to abachler and BobS0327

    abachler, keyb_event works fine, thank you a lot!, but i find that, before calling the function, i must set focus on the application I...
  5. Replies
    20
    Views
    13,830

    Fake keystrokes to another process

    Hi all!

    I've been dealing with the task of sending fake keystrokes from my process to windows of other processes. I can send messages such like minimize or close. But when i try to send WM_KEYDOWN...
Results 1 to 5 of 5