Subversion Repositories Kolibri OS

Rev

Rev 3466 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3466 Rev 3468
Line 59... Line 59...
59
	
59
	
60
	mem_Init();
60
	mem_Init();
61
	if (load_dll2(boxlib, #box_lib_init,0)!=0) {notify("System Error: library doesn't exists /rd/1/lib/box_lib.obj"); ExitProcess();}
61
	if (load_dll2(boxlib, #box_lib_init,0)!=0) {notify("System Error: library doesn't exists /rd/1/lib/box_lib.obj"); ExitProcess();}
62
	if (load_dll2(libio, #libio_init,1)!=0) debug("Error: library doesn't exists - libio"w);
62
	if (load_dll2(libio, #libio_init,1)!=0) debug("Error: library doesn't exists - libio"w);
63
	if (load_dll2(libimg, #libimg_init,1)!=0) debug("Error: library doesn't exists - libimg"w);
63
	if (load_dll2(libimg, #libimg_init,1)!=0) debug("Error: library doesn't exists - libimg"w);
64
	if (load_dll2(libtruetype, #truetype,0)!=0) {debug("Error: library doesn't exists - TrueType"w); use_truetype = 2; }
64
	if (load_dll2(libtruetype, #truetype,0)!=0) {debug("Warning: library doesn't exists - TrueType"w); use_truetype = 2; }
Line 65... Line 65...
65
	else init_font(#fontlol);
65
	else init_font(#fontlol);
66
	
66
	
Line 179... Line 179...
179
	WB1.width = Form.width - 10 - scroll1.size_x;
179
	WB1.width = Form.width - 10 - scroll1.size_x;
180
	WB1.height = Form.height - WB1.top - GetSkinHeight() - 4;
180
	WB1.height = Form.height - WB1.top - GetSkinHeight() - 4;
181
	WB1.line_h = 10;
181
	WB1.line_h = 10;
182
	lines.column_max = WB1.width - 30 / 6;
182
	lines.column_max = WB1.width - 30 / 6;
183
	lines.visible = WB1.height - 3 / WB1.line_h - 2;
183
	lines.visible = WB1.height - 3 / WB1.line_h - 2;
-
 
184
	DrawBufInit();
184
}
185
}
Line 185... Line 186...
185
 
186
 
186
 
187