kolibrios/programs/cmm/TWB/table.h
Kirill Lipatov (Leency) 5aa14a9e6a HTMLv 0.99.69
git-svn-id: svn://kolibrios.org@4636 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-03-12 22:56:28 +00:00

19 lines
255 B
C

struct Table
{
byte active;
byte max_cols;
byte max_rows;
byte cur_col;
byte cur_row;
int col_w[255];
int col_h[255];
void NewTable();
} table;
void Table::NewTable()
{
cur_row = 0;
cur_col = 0;
max_rows = 0;
max_cols = 0;
}