- ascii 코드 -
LPSTR : char *
LPCSTR : const char *
- unicode -
LPWSTR : w_char *
LPCWSTR : const w_char *
- ascii & unicode -
LPTSTR : TCHAR *
LPCTSTR : const TCHAR *
- TCHAR -
#ifdef UNICODE
typedef wchar_t TCHAR;
#else
typedef char TCHAR;
#endif
'Programming > Win_API' 카테고리의 다른 글
윈도우즈 API - 메모리 관련 함수2 (GetProcessHeap, HeapAlloc, HeapFree, HeapCreate) (0) | 2012.09.11 |
---|---|
윈도우즈 API - 메모리 관련 함수1 (VirtualAlloc, VirtualFree, VirtualProtect) (1) | 2012.09.07 |
윈도우즈 API - 파일 관련 함수(CreateFile, WriteFile, ReadFile) (4) | 2012.09.03 |
윈도우즈 API - 윈도우 창 관련 함수 (1) | 2012.08.23 |
윈도우즈 API - 윈도우 창 (0) | 2012.08.15 |