| 35 | }) != text.cend(); |
| 36 | } |
| 37 | static auto is_invalid_path_element(ImGuiInputTextCallbackData *data) -> int |
| 38 | { |
| 39 | return data->EventChar == L'\"' || data->EventChar == L'*' || data->EventChar == L':' || data->EventChar == L'<' || data->EventChar == L'>' || data->EventChar == L'?' || data->EventChar == L'|'; |
| 40 | } |
| 41 | static auto is_invalid_filename_element(ImGuiInputTextCallbackData *data) -> int |
| 42 | { |
| 43 | // A file name cannot contain any of the following characters |
no outgoing calls
no test coverage detected