Subversion Repositories Kolibri OS

Rev

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

Rev 5621 Rev 5626
Line 47... Line 47...
47
	mouse m;
47
	mouse m;
48
	char filepath[4096];
48
	char filepath[4096];
49
	char notify_message[4296];
49
	char notify_message[4296];
Line 50... Line 50...
50
	
50
	
51
	mem_Init();
51
	mem_Init();
52
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify(BOX_LIB_LOAD_ERR);
52
	load_dll(boxlib, #box_lib_init,0);
53
	if (load_dll2(libio, #libio_init,1)!=0) notify(LIB_IO_LOAD_ERR);
53
	load_dll(libio, #libio_init,1);
54
	if (load_dll2(libHTTP, #http_lib_init,1)!=0) notify("Error: library doesn't exists - http");	
54
	load_dll(libHTTP, #http_lib_init,1);	
55
	if (!URL) strcpy(#URL, "http://builds.kolibrios.org/eng/latest-iso.7z");
55
	if (!URL) strcpy(#URL, "http://builds.kolibrios.org/eng/latest-iso.7z");
Line 56... Line 56...
56
	address_box.size = address_box.pos = strlen(#URL);
56
	address_box.size = address_box.pos = strlen(#URL);
57
 
57