kolibrios/programs/cmm/TWB/table.h
Kirill Lipatov (Leency) 8dc139d234 HTMLv: fixed memory leaks, fixed - show error page if page not found, some code refactoring
git-svn-id: svn://kolibrios.org@4650 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-03-15 15:16:08 +00:00

19 lines
271 B
C

struct Table
{
byte active;
byte max_cols;
byte max_rows;
byte cur_col;
byte cur_row;
int col_w[32];
int row_start, row_h, row_max_h;
void NewTable();
} table;
void Table::NewTable()
{
cur_row = 0;
cur_col = 0;
max_rows = 0;
max_cols = 0;
}