我正在尝试编译在此处找到的sysvad音频驱动程序示例:https://github.com/Microsoft/Windows-driver-samples/tree/master/audio/sysvad
在编译Windows内核模式驱动程序x64时出现链接器错误
error LNK2019: unresolved external symbol __stdio_common_vswprintf referenced in function _vsnwprintf_l
很明显,我的VC路径被阻塞了,但是我尝试了很多事情,但是找不到它所在的位置。我尝试添加libucrt.lib
,但这给了我一个不同的错误:
warning LNK4257: object file was not compiled for kernel mode; the image might not run
对于Win32版本,一切都可以编译。