Is this worthy trying?
Regular way:
TCHAR filename[255];
ifstream stm;
stm.open(filename, mode);
A workaround for unicode filename:
ifstream stm(_wfopen(filename, mode));
Regular way:
TCHAR filename[255];
ifstream stm;
stm.open(filename, mode);
A workaround for unicode filename:
ifstream stm(_wfopen(filename, mode));