我需要从WDK样本src\print\monitors\localmon
请帮助说明
我刚刚添加了
localmon.c文件中的 #include <ntddk.h>
和
DbgPrint("Some message");
在同一档案中
在编译时我会遇到下一个错误:
1>errors in directory c:\winddk\7600.16385.1\src\print\new2\monitors\localmon
1>c:\winddk\7600.16385.1\inc\api\ntdef.h(149) : error C2220: warning treated as
error - no 'object' file generated
1>c:\winddk\7600.16385.1\inc\api\ntdef.h(614) : error C2011: '_PROCESSOR_NUMBER'
: 'struct' type redefinition
1>c:\winddk\7600.16385.1\inc\api\ntdef.h(625) : error C2011: '_GROUP_AFFINITY' :
'struct' type redefinition
1>c:\winddk\7600.16385.1\inc\api\ntdef.h(882) : error C2011: '_FLOAT128' : 'stru
ct' type redefinition
1>c:\winddk\7600.16385.1\inc\api\ntdef.h(933) : error C2011: '_LARGE_INTEGER' :
'union' type redefinition
1>c:\winddk\7600.16385.1\inc\api\ntdef.h(951) : error C2011: '_ULARGE_INTEGER' :
'union' type redefinition
1>c:\winddk\7600.16385.1\inc\api\ntdef.h(973) : error C2011: '_LUID' : 'struct'
type redefinition
我做错了什么?
由于
答案 0 :(得分:3)
这是用户模式代码。请改用OutputDebugString
,而不要包含ntddk.h
。如果需要,可以将一个小函数作为适配器写入OutputDebugString
,因为它不会像对应的DbgPrint
那样使用格式化字符串等。
如果绝对必须使用DbgPrint
,当然也可以从ntdll.dll
获取。所以你可以进入并从那里导入它(原型可以在WDK中的wdm.h
中找到)。但我更喜欢OutputDebugString
用户模式代码。