I need to ensure that message boxes are shown only if my app is running in an interactive desktop. So I was thinking, can I override ::MessageBox and AfxMessageBox with my own implementation (from a C++/MFC project, compiled with VS 2008)?
PS. I do not need global hooks. This needs to work only from my app's code. For instance, if somewhere in the code I have ::MessageBox(...); it should let me call my own method instead of linking to the system API.