| 4040 | |
| 4041 | #if defined(PUGI__MSVC_CRT_VERSION) || defined(__BORLANDC__) || (defined(__MINGW32__) && !defined(__STRICT_ANSI__)) |
| 4042 | PUGI__FN FILE* open_file_wide(const wchar_t* path, const wchar_t* mode) |
| 4043 | { |
| 4044 | return _wfopen(path, mode); |
| 4045 | } |
| 4046 | #else |
| 4047 | PUGI__FN char* convert_path_heap(const wchar_t* str) |
| 4048 | { |
no test coverage detected