| 5213 | } |
| 5214 | |
| 5215 | IGFD_C_API bool IGFD_RemovePlacesGroup(ImGuiFileDialog* vContextPtr, const char* vGroupName) { |
| 5216 | if (vContextPtr != nullptr) { |
| 5217 | return vContextPtr->RemovePlacesGroup(vGroupName); |
| 5218 | } |
| 5219 | return false; |
| 5220 | } |
| 5221 | |
| 5222 | IGFD_C_API bool IGFD_AddPlace(ImGuiFileDialog* vContextPtr, const char* vGroupName, const char* vPlaceName, const char* vPlacePath, bool vCanBeSaved, const char* vIconText) { |
| 5223 | if (vContextPtr != nullptr) { |
nothing calls this directly
no test coverage detected