| 4957 | } |
| 4958 | |
| 4959 | IGFD_C_API bool IGFD_WasOpenedThisFrame(ImGuiFileDialog* vContextPtr) { |
| 4960 | if (vContextPtr != nullptr) { |
| 4961 | return vContextPtr->WasOpenedThisFrame(); |
| 4962 | } |
| 4963 | |
| 4964 | return false; |
| 4965 | } |
| 4966 | |
| 4967 | IGFD_C_API bool IGFD_IsKeyOpened(ImGuiFileDialog* vContextPtr, const char* vCurrentOpenedKey) { |
| 4968 | if (vContextPtr != nullptr) { |
nothing calls this directly
no test coverage detected