您的位置:首页 > 其它

VC8学习笔记:字符型变量

2008-04-16 17:42 411 查看
LPCSTR

     Pointer to a constant null-terminated string of 8-bit Windows (ANSI) characters.

LPCTSTR

    An LPCWSTR if UNICODE is defined, an LPCSTR otherwise.

LPCWSTR

Pointer to a constant null-terminated string of 16-bit Unicode characters.

 

LPSTR

Pointer to a null-terminated string of 8-bit Windows (ANSI) characters.

LPTSTR

An LPWSTR if UNICODE is defined, an LPSTR otherwise.

LPWSTR

Pointer to a null-terminated string of 16-bit Unicode characters.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  string windows