How can I prevent a third party library from displaying a MessageBox?

后端 未结 3 1981
时光取名叫无心
时光取名叫无心 2020-12-30 03:58

I am integrating a third party C-based SDK into my .NET application. The application will run as a Windows service on a server, so it should not interact with the user in a

3条回答
  •  时光取名叫无心
    2020-12-30 04:48

    Check out Detours from Microsoft Research. It allows you to detour arbitrary Windows API functions. C/C++ programming is required to make it work though. You won't need much.

提交回复
热议问题