MFC 프로그래밍에서 console창 띄우기
Clunix Wiki
(버전 사이의 차이)
3번째 줄: | 3번째 줄: | ||
stdafx.h에서 다음과 같이 입력한다. | stdafx.h에서 다음과 같이 입력한다. | ||
− | |||
#pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:console") | #pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:console") | ||
− | |||
출력은 일반적인 콘솔 프로그램과 같이 cout이나 printf 등을 사용하면 된다. | 출력은 일반적인 콘솔 프로그램과 같이 cout이나 printf 등을 사용하면 된다. | ||
http://darkblitz.tistory.com/tag/Console | http://darkblitz.tistory.com/tag/Console | ||
+ | http://msdn.microsoft.com/ko-kr/library/f9t8842e(VS.80).aspx |
2009년 2월 24일 (화) 17:18 판
AllocConsole() 필요없이 바로 띄워서 printf등을 사용할 수 있다.
stdafx.h에서 다음과 같이 입력한다.
#pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:console")
출력은 일반적인 콘솔 프로그램과 같이 cout이나 printf 등을 사용하면 된다.
http://darkblitz.tistory.com/tag/Console http://msdn.microsoft.com/ko-kr/library/f9t8842e(VS.80).aspx