I am working on a driver using WDK that will monitor network traffic and output it to a log file.
I am currently trying to modify the inspect example given in the WinDDK directory.
It seems that I can't call printf, fprintf, etc. because of a linker error:
unresolved external symbol __imp_printf ...
Is there another way to output traffic information to a log file? Am I not linking some library somewhere properly?
Thank you