Changeset 21968 for trunk/include
- Timestamp:
- Feb 16, 2012, 11:46:35 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/windef.h
r21498 r21968 574 574 #define _TCHAR_DEFINED 575 575 # ifdef UNICODE 576 typedef WCHAR TCHAR ;577 typedef LPWSTR LPTSTR ;578 typedef LPCWSTR LPCTSTR ;576 typedef WCHAR TCHAR, *PTCHAR; 577 typedef LPWSTR LPTSTR, PTSTR; 578 typedef LPCWSTR LPCTSTR, PCTSTR; 579 579 #define __TEXT(string) L##string /*probably wrong */ 580 580 # else /* UNICODE */ 581 typedef CHAR TCHAR,*PTCHAR;582 typedef LPSTR LPTSTR ;583 typedef LPCSTR LPCTSTR ;581 typedef CHAR TCHAR, *PTCHAR; 582 typedef LPSTR LPTSTR, PTSTR; 583 typedef LPCSTR LPCTSTR, PCTSTR; 584 584 #define __TEXT(string) string 585 585 # endif /* UNICODE */
Note:
See TracChangeset
for help on using the changeset viewer.