I have an exe file that I had written a while back and cannot find the source code for it (it was written in C++).
It calls the MessageBoxA
function in user32.dll
and passes necessary parameters to it. I want to modify the flags parameter to include the MB_ICONERROR
(0x10) flag.
How do I go about finding which bytes in the exe file need to be modified to accomplish this?