Subversion Repositories Kolibri OS

Rev

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

Rev 4718 Rev 5713
Line 13... Line 13...
13
	dword GetUrl();
13
	dword GetUrl();
14
	dword GetFirstLine();
14
	dword GetFirstLine();
15
	void AddUrl();
15
	void AddUrl();
16
	byte GoBack();
16
	byte GoBack();
17
	byte GoForward();
17
	byte GoForward();
18
};
18
} BrowserHistory;
Line 19... Line 19...
19
 
19
 
20
dword UrlsHistory::CurrentUrl() {
20
dword UrlsHistory::CurrentUrl() {
21
	return #history_list[current].Item;
21
	return #history_list[current].Item;
Line 61... Line 61...
61
	if (current==links_count) return 0;
61
	if (current==links_count) return 0;
62
	current++;
62
	current++;
63
	strlcpy(#URL, #history_list[current].Item, sizeof(URL));
63
	strlcpy(#URL, #history_list[current].Item, sizeof(URL));
64
	return 1;
64
	return 1;
65
}
65
}
66
 
-
 
67
UrlsHistory BrowserHistory;
-
 
68
66