使用 Dmf 框架构建驱动程序时未解析的外部符号 WppAutoLogTrace

Unresolved external symbol WppAutoLogTrace when building a driver with Dmf Framework

我正在尝试使用 Microsoft Dmf Framework 构建驱动程序 https://github.com/microsoft/DMF

我从这个存储库中提供的 sln 文件构建了 Dmf。结果是 DmfK.lib(我构建了一个内核模式驱动程序),然后我将这个库添加到我的驱动程序项目中。

但是我有 27 次相同的链接器错误“未解析的外部符号 WppAutoLogTrace”来自此库的不同函数,即:

Error   LNK2019 unresolved external symbol WppAutoLogTrace referenced in function "long __cdecl HashTable_ContextInitialize(struct DMFMODULE__ *)" (?HashTable_ContextInitialize@@YAJPEAUDMFMODULE__@@@Z)   Main (Main\Main)    C:\Data\Development\MyDriver\Source\Main\DmfK.lib(Dmf_HashTable.obj)

我在网上没有找到关于这个功能的相关信息,我不知道该包含哪个库。这是缺少库的问题还是 DmfK.lib 构建的问题?

我终于找到了解决方案:

WppAutoLogTrace 在 WppRecorder.lib

中实现