Sunwayking

导航

VC++ 中的常用基本类型(增补ing)

LPSTR:

typedef CHAR *LPSTR;

LPCSTR:

typedef __nullterminated CONST CHAR *LPCSTR;

LPWSTR:

typedef WCHAR *LPWSTR;

LPCWSTR:

typedef CONST WCHAR *LPCWSTR;

LPTSTR:

#ifdef UNICODE

typedef LPWSTR LPTSTR;

#else

typedef LPSTR LPTSTR;

#endif

posted on 2009-06-10 14:06  Sunwayking  阅读(265)  评论(0编辑  收藏  举报