Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4636 leency 1
struct Table
2
{
3
	byte active;
4
	byte max_cols;
5
	byte max_rows;
6
	byte cur_col;
7
	byte cur_row;
4650 leency 8
	int col_w[32];
9
	int row_start, row_h, row_max_h;
4636 leency 10
	void NewTable();
11
} table;
12
 
13
void Table::NewTable()
14
{
15
	cur_row = 0;
16
	cur_col = 0;
17
	max_rows = 0;
18
	max_cols = 0;
19
}