| 3117 | IMGUI_API ImGuiIO& GetIO(ImGuiContext* ctx); |
| 3118 | IMGUI_API ImGuiPlatformIO& GetPlatformIO(ImGuiContext* ctx); |
| 3119 | inline ImGuiWindow* GetCurrentWindowRead() { ImGuiContext& g = *GImGui; return g.CurrentWindow; } |
| 3120 | inline ImGuiWindow* GetCurrentWindow() { ImGuiContext& g = *GImGui; g.CurrentWindow->WriteAccessed = true; return g.CurrentWindow; } |
| 3121 | IMGUI_API ImGuiWindow* FindWindowByID(ImGuiID id); |
| 3122 | IMGUI_API ImGuiWindow* FindWindowByName(const char* name); |
no outgoing calls
no test coverage detected