Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4635 → Rev 4636

/programs/cmm/TWB/table.h
0,0 → 1,19
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;
}