/////////////////////////////////////////////////////////////////////
#define STRICT
#include <windows.h>

int PASCAL WinMain( HINSTANCE hinstCurrent,
                    HINSTANCE hinstPrevious,
                    LPSTR lpszCmdLine,
                    int nCmdShow )
{
   MessageBox( NULL,
               "This is line number one of the message\n"
               "The second line of the message is here\n"
               "After the first two, this one is obvious",
               ">>>  System Modal Message Box Test Title <<<",
               MB_RETRYCANCEL|MB_ICONSTOP|MB_SYSTEMMODAL );
   return 0;
}
/////////////////////////////////////////////////////////////////////

