MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / IGFD_Destroy

Function IGFD_Destroy

ImGuiFileDialog.cpp:4905–4910  ·  view source on GitHub ↗

destroy the instance of ImGuiFileDialog

Source from the content-addressed store, hash-verified

4903
4904// destroy the instance of ImGuiFileDialog
4905IGFD_C_API void IGFD_Destroy(ImGuiFileDialog* vContextPtr) {
4906 if (vContextPtr != nullptr) {
4907 delete vContextPtr;
4908 vContextPtr = nullptr;
4909 }
4910}
4911
4912IGFD_C_API void IGFD_OpenDialog( // open a standard dialog
4913 ImGuiFileDialog* vContextPtr, // ImGuiFileDialog context

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected