摘要:
#include "struct.h"#include "TesSys.h"typedef enum _SYSTEM_INFORMATION_CLASS //Q S{SystemProcessesAndThreadsInformation,// 05 Y NSystemCallCounts, // 06 Y NSystemConfigurationInformation, // 07 Y NSystemProcessorTimes, // 08 Y NSystemGlobalFlag, // 09 Y YSystemNotImplemented2, // 10 Y NSystemModul 阅读全文
2010年12月30日 #
摘要:
UNICODE_STRING:typedef struct _UNICODE_STRING { USHORT Length; //UNICODE占用的内存字节数,个数*2; USHORT MaximumLength; PWSTR Buffer;} UNICODE_STRING ,*PUNICODE_STRING;参数定义:Length-----buffer的字节长度,不包括终止符“NULL”MaximumLength---buffer的的总的字节大小。Up to MaximumLength bytes may be written into thebuffer without tramplin 阅读全文