VSCode - argument of type "const char *" is incompatible with parameter of type "LPCWSTR" 错误的解决方法
Dionysen

主要原因是字符集的问题,不使用unicode字符集即可。

在VSCode中,删除c_cpp_properties.json中的宏UNICODE_UNICODE

"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],

之后:

"defines": [
"_DEBUG"
],
显示评论