阅读:1379回复:5
请问 PUNICODE_STRING是什么样子的数据类型
谢谢~~~
|
|
沙发#
发布于:2005-02-15 01:38
The UNICODE_STRING structure is used to define Unicode strings.
typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; } UNICODE_STRING *PUNICODE_STRING; Members Length The length in bytes of the string stored in Buffer. MaximumLength The maximum length in bytes of Buffer. Buffer Pointer to a buffer used to contain a string of wide characters. |
|
板凳#
发布于:2005-02-15 11:04
就是一个buffer加上了实际的长度和最大可用的长度
|
|
地板#
发布于:2005-02-15 12:01
作为指针,看你在什么OS下,32位和64位是不同的.
|
|
|
地下室#
发布于:2005-02-15 12:41
参看MSDN
The UNICODE_STRING structure is used to define Unicode strings. |
|
|
5楼#
发布于:2005-02-15 23:30
参看MSDN 对,这样简单并且和同样的问题好想已经不是一次出现在这个论坛中了,我真不明白这是什么原因 |
|
|