Subversion Repositories Kolibri OS

Rev

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

Rev 5625 Rev 5626
Line 100... Line 100...
100
#include "parselist.c"
100
#include "parselist.c"
Line 101... Line 101...
101
 
101
 
102
void main() {
102
void main() {
103
	mem_Init();
103
	mem_Init();
104
	CursorPointer.Load(#CursorFile);
104
	CursorPointer.Load(#CursorFile);
105
	if (load_dll2(boxlib, #box_lib_init,0)!=0)	        notify(BOX_LIB_LOAD_ERR);
105
	load_dll(boxlib, #box_lib_init,0);
106
	if (load_dll2(network_lib, #network_lib_init,0)!=0)	notify("Error while loading library - network.obj");
106
	load_dll(network_lib, #network_lib_init,0);
-
 
107
	load_dll(netcode_lib, #base64_encode,0);
-
 
108
	load_dll(libio, #libio_init,1);
107
	if (load_dll2(netcode_lib, #base64_encode,0)!=0)	notify("Error while loading library - netcode.obj");
109
	load_dll(libimg, #libimg_init,1);
108
	if (load_dll2(iconv_lib, #iconv_open,0)!=0)	      { notify("Error while loading library - iconv.obj"); use_iconv=2; }
-
 
109
	if (load_dll2(libio, #libio_init,1)!=0)             notify(LIB_IO_LOAD_ERR);
-
 
110
	if (load_dll2(libimg, #libimg_init,1)!=0)           notify(LIB_IMG_LOAD_ERR);
110
	if (load_dll2(iconv_lib, #iconv_open,0)!=0)	{ notify("Error while loading library - iconv.obj"); use_iconv=2; }
111
	OpenMailDat();
111
	OpenMailDat();
112
	SetEventMask(0x27);
112
	SetEventMask(0x27);
113
	LoginBoxLoop();
113
	LoginBoxLoop();