728x90

 

 

심호흡하고 다시 인코딩에 대해서 읽어보기...


https://dopamine-plaza.tistory.com/30

 

_tmain이란? main과 wmain

_tmain은 C++ 표준에 포함되어 있지 않고, Microsoft 확장에서만 쓴다.C++표준에 의하면 main 함수는 프로그램의 진입점이며, 2가지 형태가 있다. int main();int main(int argc, char* argv[]); C++표준의 main 함수는 c

dopamine-plaza.tistory.com

_tmain은 유니코드(Unicode, UTF-16)기능이 켜져있는지 여부에 따라 main과 wmain중 선택이 이루어지겠금 되어 있다. 

만약 유니코드가 켜져있으면 컴파일시 wmain으로, 그렇지 않으면 main으로 컴파일 된다.

 

https://coding-restaurant.tistory.com/472

 

비주얼스튜디오 문자집합(유니코드 vs 멀티바이트)

비쥬얼스튜디오에 생성된 프로젝트에서 마우스 우클릭하여 속성>구성 속성>고급에 들어간다. 문자 집합 설정을 보면 유니코드 문자 집합 사용, 멀티바이트 문자 집합 사용 모드를 볼 수 있다.

coding-restaurant.tistory.com

 

https://redcoder.tistory.com/137

 

[C/C++] [MFC] TCHAR, wchar, char란 무엇인가??

로재의 개발 일기 IOCP를 github에서 예제를 보면서 공부를 하다가TCHAR나 _tmain _tprint _wchar_t 와 같은 부분에서 막혀저와 같은 분들이 있을까해서 포스팅을 합니당... (win32 공부해야 하나..) TCHAR? TCHAR

redcoder.tistory.com

즉 TCHAR 멀티바이트 유니코드 둘다 만족시키기 위해 

 

https://stackoverflow.com/questions/29260419/c2061-syntax-error-identifier-tchar

 

C2061: syntax error : identifier '_TCHAR'

Can't understand why I'm getting this error? im kinda new to c++ and microsoft visual studio, kinda lost on this. Thanks for the help on advance. #include <iostream> ...

stackoverflow.com

#include "tchar.h"

+ Recent posts