| 3485 | IMGUI_API bool TableBeginContextMenuPopup(ImGuiTable* table); |
| 3486 | IMGUI_API void TableMergeDrawChannels(ImGuiTable* table); |
| 3487 | inline ImGuiTableInstanceData* TableGetInstanceData(ImGuiTable* table, int instance_no) { if (instance_no == 0) return &table->InstanceDataFirst; return &table->InstanceDataExtra[instance_no - 1]; } |
| 3488 | inline ImGuiID TableGetInstanceID(ImGuiTable* table, int instance_no) { return TableGetInstanceData(table, instance_no)->TableInstanceID; } |
| 3489 | IMGUI_API void TableSortSpecsSanitize(ImGuiTable* table); |
| 3490 | IMGUI_API void TableSortSpecsBuild(ImGuiTable* table); |
no outgoing calls
no test coverage detected