Subversion Repositories Kolibri OS

Rev

Rev 5534 | Rev 5626 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5534 Rev 5621
Line 122... Line 122...
122
	int half_scroll_size;
122
	int half_scroll_size;
123
	int scroll_used=0, show_menu;
123
	int scroll_used=0, show_menu;
Line 124... Line 124...
124
	
124
	
125
	mem_Init();
125
	mem_Init();
126
	CursorPointer.Load(#CursorFile);
126
	CursorPointer.Load(#CursorFile);
127
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify("Error: library doesn't exists - box_lib");
127
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify(BOX_LIB_LOAD_ERR);
128
	if (load_dll2(libio, #libio_init,1)!=0) notify("Error: library doesn't exists - libio");
128
	if (load_dll2(libio, #libio_init,1)!=0) notify(LIB_IO_LOAD_ERR);
129
	if (load_dll2(libimg, #libimg_init,1)!=0) notify("Error: library doesn't exists - libimg");
129
	if (load_dll2(libimg, #libimg_init,1)!=0) notify(LIB_IMG_LOAD_ERR);
130
	if (load_dll2(libHTTP, #http_lib_init,1)!=0) notify("Error: library doesn't exists - http");
130
	if (load_dll2(libHTTP, #http_lib_init,1)!=0) notify(LIB_HTTP_LOAD_ERR);
131
	Libimg_LoadImage(#skin, abspath("wv_skin.png"));
131
	Libimg_LoadImage(#skin, abspath("wv_skin.png"));
Line 132... Line 132...
132
	SetSkinColors();
132
	SetSkinColors();
133
	
133