- Timestamp:
- 04/23/15 03:18:25 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/virtfile/stdiofile.cpp
r372 r374 12 12 { 13 13 //printH("Vfopen %s %s",path,mode); 14 #ifdef _WIN32 15 FILE *f = _wfopen(Convert::utf8ToUtf16(path).c_str(), Convert::strTOwstr(mode).c_str()); 16 #else 17 #ifdef USE_MFILE 14 #if defined USE_MFILE || defined _WIN32 18 15 MFILE *f = mfopen(path, mode); 19 16 #else 20 17 FILE *f = fopen(path, mode); 21 #endif22 18 #endif 23 19 //printH("%p",f);
Note: See TracChangeset
for help on using the changeset viewer.