LRESULT CALLBACK MainWndProc ( HWND hWnd, UINT message,WPARAM wParam, LPARAM lParam )
case WM_COMMAND: /* Menu Selection or Dialog Box Control */
{ case CM_EXIT: /* ID of the EXIT menu item */
case CM_MESSAGE_TO_SCREEN; /* another menu item */
MessageBox( hWnd, "Message Text", ”Message Title", MB_OK);
return ( DefWindowProc ( hWnd, message, wParam, lParam ) );
return ( DefWindowProc ( hWnd, message, wParam, lParam ) );