| 5163 | } |
| 5164 | |
| 5165 | IGFD_C_API void SetLocales(ImGuiFileDialog* vContextPtr, const int vCategory, const char* vBeginLocale, const char* vEndLocale) { |
| 5166 | if (vContextPtr != nullptr) { |
| 5167 | vContextPtr->SetLocales(vCategory, (vBeginLocale ? vBeginLocale : ""), (vEndLocale ? vEndLocale : "")); |
| 5168 | } |
| 5169 | } |
| 5170 | |
| 5171 | #ifdef USE_EXPLORATION_BY_KEYS |
| 5172 | IGFD_C_API void IGFD_SetFlashingAttenuationInSeconds(ImGuiFileDialog* vContextPtr, float vAttenValue) { |
nothing calls this directly
no test coverage detected