我正在尝试将 const char * 转换为 LPTSTR。但我不想使用USES_CONVERSION 来执行此操作。
以下是我使用USES_CONVERSION 转换的代码。有没有办法使用 sprintf 或 tcscpy 等进行转换?
USES_CONVERSION;
jstring JavaStringVal = (some value passed from other function);
const char *constCharStr = env->GetStringUTFChars(JavaStringVal, 0);
LPTSTR lpwstrVal = CA2T(constCharStr); //I do not want to use the function CA2T..