(Windows) Monitoring API calls in C

后端 未结 5 526
悲哀的现实
悲哀的现实 2020-12-09 05:27

Is there anyway to monitor API calls on your system in C?

5条回答
  •  温柔的废话
    2020-12-09 05:59

    On a function-by-function base, you can use Microsoft Detours. It intercepts API calls by rewriting the function entry points to point to your code.

提交回复
热议问题