| 888 | } |
| 889 | |
| 890 | void TableNextRow(float min_row_height, String row_flag) { |
| 891 | ImGui::TableNextRow(TableRowFlag(row_flag), min_row_height); |
| 892 | } |
| 893 | |
| 894 | void TableSetupColumn(const char* label, float init_width_or_weight, ImU32 user_id, Slice* flags, int flagCount) { |
| 895 | ImGui::TableSetupColumn(label, TableColumnFlags(flags, flagCount), init_width_or_weight, user_id); |
no test coverage detected