본문 바로가기
기술자료/Win32 MFC WinCE

Dos 창에서 cl로 컴파일 해서 메시지 박스 띄우기 MessageBox

by 와이즈캣 2014. 9. 11.
728x90
반응형

#include <windows.h>
#pragma comment(lib, "user32.lib")

int main()
{
  MessageBox(0"test""111",MB_OK);
  return 0;
}

728x90