wdmcpp is a Visual Studio Project example, which demonstrates usage of Microsoft's C Standard Library in Windows kernel-mode driver (WDM).
$(VC_IncludePath)
in "Include Directories" -- enables Visual Studio to find C Standard Library header files;libcntpr.lib
in "Additional Dependencies" of Linker Input -- enables linking with NT Kernel C standard functions;- Definition of C/C functions -- see
cpp.cpp
; - Invoking constructors and destructors -- see
cpp.cpp
;