| 1741 | //----------------------------------------------------------------------------- |
| 1742 | |
| 1743 | int ImGui::TableGetColumnCount() |
| 1744 | { |
| 1745 | ImGuiContext& g = *GImGui; |
| 1746 | ImGuiTable* table = g.CurrentTable; |
| 1747 | return table ? table->ColumnsCount : 0; |
| 1748 | } |
| 1749 | |
| 1750 | const char* ImGui::TableGetColumnName(int column_n) |
| 1751 | { |
nothing calls this directly
no outgoing calls
no test coverage detected