| 5206 | } |
| 5207 | |
| 5208 | IGFD_C_API bool IGFD_AddPlacesGroup(ImGuiFileDialog* vContextPtr, const char* vGroupName, size_t vDisplayOrder, bool vCanBeEdited) { |
| 5209 | if (vContextPtr != nullptr) { |
| 5210 | return vContextPtr->AddPlacesGroup(vGroupName, vDisplayOrder, vCanBeEdited); |
| 5211 | } |
| 5212 | return false; |
| 5213 | } |
| 5214 | |
| 5215 | IGFD_C_API bool IGFD_RemovePlacesGroup(ImGuiFileDialog* vContextPtr, const char* vGroupName) { |
| 5216 | if (vContextPtr != nullptr) { |
nothing calls this directly
no test coverage detected