Get notifications of new threads / deleted threads under Windows

后端 未结 1 1173
温柔的废话
温柔的废话 2021-01-25 19:44

When you create a DLL you can get notifications about new threads / exiting threads in the DllMain function (DLL_THREAD_ATTACH/DLL_THREAD_DETACH).

Is there a way to get

相关标签:
1条回答
  • 2021-01-25 20:26

    Yes - include a small stub DLL in your process that simply monitors DLL_THREAD_ATTACH and DLL_THREAD_DETACH in the way you want.

    0 讨论(0)
提交回复
热议问题