| 3089 | IMGUI_API bool TableBeginContextMenuPopup(ImGuiTable* table); |
| 3090 | IMGUI_API void TableMergeDrawChannels(ImGuiTable* table); |
| 3091 | inline ImGuiTableInstanceData* TableGetInstanceData(ImGuiTable* table, int instance_no) { if (instance_no == 0) return &table->InstanceDataFirst; return &table->InstanceDataExtra[instance_no - 1]; } |
| 3092 | inline ImGuiID TableGetInstanceID(ImGuiTable* table, int instance_no) { return TableGetInstanceData(table, instance_no)->TableInstanceID; } |
| 3093 | IMGUI_API void TableSortSpecsSanitize(ImGuiTable* table); |
| 3094 | IMGUI_API void TableSortSpecsBuild(ImGuiTable* table); |
no outgoing calls
no test coverage detected