Hello All!
I would like to create a message box from one of my "C" applications. I have looked at
prior posts and received a snippet such as this one:
#include windows.h
MessageBox(hwnd, "You have bla bla", buffer, MB_OK);char buffer[100];
Well, the problem is that during the build of my application the "windows.h" is not found, several compliation errors, etc...
Can anyone direct me to where I can find out how to use the MessageBox function, if that is
the correct function name, it was an "undefined symbol" as well.
Thanks!