blob: 0585140984c998ce4789a4374dbc250c70da18f2 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <ui.h>
#include "widget.h"
const uiCell* GetCell(const uiTable* table, int row, int col);
uiCell* GetCellMut(uiTable* table, int row, int col);
uiCell** GetLastRow(uiTable* table);
|