Subversion Repositories Kolibri OS

Rev

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

Rev 7283 Rev 7293
Line 95... Line 95...
95
dword DOWNLOADER::Start(dword _url)
95
dword DOWNLOADER::Start(dword _url)
96
{
96
{
97
	url = _url;
97
	url = _url;
98
	state = STATE_IN_PROGRESS;
98
	state = STATE_IN_PROGRESS;
99
	httpd.get(url);
99
	httpd.get(url);
-
 
100
	if (!httpd.transfer) Stop();
100
	return httpd.transfer;
101
	return httpd.transfer;
101
}
102
}
Line 102... Line 103...
102
 
103
 
103
void DOWNLOADER::Stop()
104
void DOWNLOADER::Stop()