| 1060 | } |
| 1061 | |
| 1062 | IWriter* CLocatorAPI::w_open(LPCSTR path, LPCSTR _fname) |
| 1063 | { |
| 1064 | string_path fname; |
| 1065 | strcpy_s(fname, _fname); |
| 1066 | xr_strlwr(fname); //,".$"); |
| 1067 | if (path && path[0]) |
| 1068 | update_path(fname, path, fname); |
| 1069 | CFileWriter* W = xr_new<CFileWriter>(fname, false); |
| 1070 | return W; |
| 1071 | } |
| 1072 | |
| 1073 | IWriter* CLocatorAPI::w_open_ex(LPCSTR path, LPCSTR _fname) |
| 1074 | { |
no test coverage detected