Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 영화
- Close
- Linux
- 책
- windows
- window
- JavaScript
- FOR
- tcp
- 리뷰
- API
- install
- write
- Callback
- Golang
- http
- Python
- go언어
- json
- File
- channel
- Sync
- C
- package
- c++
- range
- bitcoin
- go
- mutex
- GO 언어
Archives
- Today
- Total
Code Habit
CString <-> TCHAR 상호변환 본문
- CString -> TCHAR
|
1
2
|
CString str = _T("이진성");
TCHAR* psz = (TCHAR*)(LPCTSTR)str;
|
- TCHAR -> CString
|
1
2
3
4
5
|
TCHAR* psz = _T("이진성");
CString str;
str.Format("%s", psz);
str = (LPCTSTR)psz;
|