| 357 | |
| 358 | #if MYGUI_COMPILER == MYGUI_COMPILER_MSVC && !defined(STLPORT) |
| 359 | inline void open_stream(std::ofstream& _stream, const std::wstring& _wide) |
| 360 | { |
| 361 | _stream.open(_wide.c_str()); |
| 362 | } |
| 363 | inline void open_stream(std::ifstream& _stream, const std::wstring& _wide) |
| 364 | { |
| 365 | _stream.open(_wide.c_str()); |