这个问题可能不像你最初想象的那么容易解决。
FILTER_MESSAGE_HEADER 是在头文件 fltUserStructures.h 中定义的结构,它是位于 SDK 包含路径的标准 Windows SDK 头文件,即
“C:\Program Files (x86)\Windows Kits\8.0\Include\shared\fltUserStructures.h”。
typedef struct _FILTER_MESSAGE_HEADER {
//
// OUT
//
// Total buffer length in bytes, including the FILTER_REPLY_HEADER, of
// the expected reply. If no reply is expected, 0 is returned.
//
ULONG ReplyLength;
//
// OUT
//
// Unique Id for this message. This will be set when the kernel message
// satifies this FilterGetMessage or FilterInstanceGetMessage request.
// If replying to this message, this is the MessageId that should be used.
//
ULONGLONG MessageId;
//
// General filter-specific buffer data follows...
//
} FILTER_MESSAGE_HEADER, *PFILTER_MESSAGE_HEADER;
但是,VC++ 2012 无法编译以下代码。
#include <fltUserStructures.h>
int main()
{
//
// error C2065: 'FILTER_MESSAGE_HEADER' : undeclared identifier
//
FILTER_MESSAGE_HEADER v;
}
或者
#define NTDDI_VERSION 0x06000000 // Vista or later
#include <FltUser.h>
int main()
{
//
// fltuserstructures.h(27): fatal error C1012:
// unmatched parenthesis : missing ')'
//
FILTER_MESSAGE_HEADER v;
}
尽管我尝试了很多方法,但编译器总是拒绝上面的代码。根本原因是什么?