"string" : 멀티바이트코드

L"string" : 유니코드


TEXT("string") : 멀티바이트일때 "", 유니코드일때 L""로 변환하는 매크로. (a.k.a TCHAR)

_T("string") : TEXT 매크로와 같으나 주로 MFC에서 사용. 


※ 참고 : #define UNICODE를 사용하려면 windows.h 헤더파일 선언전에 선언해야한다.

'C&C++' 카테고리의 다른 글

Get Window Focus On Other Window  (0) 2018.07.09
WINAPI Deny System Key Code  (0) 2018.06.26
Using scanf() As gets()  (0) 2018.06.15
WINAPI GetClipboardData()  (0) 2018.05.17
Parameter Split in WinMain (Argc, Argv)  (0) 2018.05.10

+ Recent posts