For my customer I need to code an application that hosts several other applications of different types. One of these applications crash when it's hosted but retrieves the WM_CLOSE
message from Windows (e.g. on pressing Close all apps in the Windows bar).
I have a Hook.dll to intercept all messages to trigger some actions. What I now want to do is to prevent the WM_CLOSE Message
to this specific window from being executed. Can someone give me an hint how to do that?
I'm working with C# and an C++ Hook.dll.