destroy the instance of ImGuiFileDialog
| 4903 | |
| 4904 | // destroy the instance of ImGuiFileDialog |
| 4905 | IGFD_C_API void IGFD_Destroy(ImGuiFileDialog* vContextPtr) { |
| 4906 | if (vContextPtr != nullptr) { |
| 4907 | delete vContextPtr; |
| 4908 | vContextPtr = nullptr; |
| 4909 | } |
| 4910 | } |
| 4911 | |
| 4912 | IGFD_C_API void IGFD_OpenDialog( // open a standard dialog |
| 4913 | ImGuiFileDialog* vContextPtr, // ImGuiFileDialog context |
nothing calls this directly
no outgoing calls
no test coverage detected