错误 1 error C2664: “CreateFileW”: 不能将参数 1 从“char [7]”转换为“LPCWSTR” e:/mystudy/09/myvirtualdisk11/myvirtualdiskdll/diskdll.cpp 112
错误 2 error C2664: “DefineDosDeviceW”: 不能将参数 2 从“char *__w64 ”转换为“LPCWSTR” e:/mystudy/09/myvirtualdisk11/myvirtualdiskdll/diskdll.cpp 134
【解决方法】:利用类型强制转换,即在参数1前加上(LPCWSTR)或reinterpret_cast<LPCWSTR>(表达式)
原文地址:https://www.cnblogs.com/hshy/p/12597591.html
时间: 2024-10-08 09:42:10