I am trying to convert a const char pointer to a constant wide string pointer. Here is my code.
double ret;
const wchar_t* file;
file = const wchar_t* (file_old);
I get something that says this: "Error, type name not allowed." over the const.
Any help is greatly appreciated!