blob: 9f466de53b5c6931ffa5d01eda438f4c398f719b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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);
|