本文介绍了如何在具有WppEnabled标志的用户模式应用程序中使用WPP跟踪的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我想在用户模式应用程序中使用WPP跟踪,如下所示: < ItemDefinitionGroup > < ClCompile > < WppEnabled > true < / WppEnabled > < WppScanConfigurationData 条件 = "'%(ClCompile.ScanConfigurationData)'==''" > trace 。 h < / WppScanConfigurationData > < WppKernelMode > false < / WppKernelMode > < / ClCompile > < / ItemDefinitionGroup > 这只是改变.vcxproj文件来添加WppEnabled标志,也许我需要添加更多标志。我试着像 这个,但我失败了。 我知道我可以使用tracewpp.exe命令生成tmh文件并使用wpp跟踪,但不允许。我的平台工具集是Visual Studio 2015(v140)。在我的用户模式项目中使用WppEnabled标志来启用WPP跟踪是否可行,以及如何实现?感谢你!解决方案 I want to use WPP Tracing in user mode application as below:<ItemDefinitionGroup> <ClCompile> <WppEnabled>true</WppEnabled> <WppScanConfigurationData Condition="'%(ClCompile.ScanConfigurationData)' == ''">trace.h</WppScanConfigurationData> <WppKernelMode>false</WppKernelMode> </ClCompile> </ItemDefinitionGroup>That is just change the .vcxproj file to add WppEnabled flag, maybe I need to add more flags. I tried to do it likethis, but I failed.I know I can use tracewpp.exe command to generate the tmh file and use wpp tracing, but it is not allowed. My Platform Toolset is Visual Studio 2015 (v140). Is it feasible to use WppEnabled flag in my user mode project to enable WPP tracing, and how? Thank you! 解决方案 这篇关于如何在具有WppEnabled标志的用户模式应用程序中使用WPP跟踪的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-20 07:21