| 75 | } |
| 76 | |
| 77 | bool CXml::Load(LPCSTR path_alias, LPCSTR path, LPCSTR _xml_filename, bool fatal) |
| 78 | { |
| 79 | shared_str fn = correct_file_name(path, _xml_filename); |
| 80 | |
| 81 | string_path str; |
| 82 | sprintf(str, "%s\\%s", path, *fn); |
| 83 | return Load(path_alias, str, fatal); |
| 84 | } |
| 85 | |
| 86 | // инициализация и загрузка XML файла |
| 87 | bool CXml::Load(LPCSTR path, LPCSTR xml_filename, bool fatal) |
nothing calls this directly
no test coverage detected