#ifdef LANG_RUS
#define HISTORY_HEADER "
История
История
Посещенные страницы
"
#else
#define HISTORY_HEADER "
History
History
Visited pages
"
#endif
ShowHistory()
{
int i;
static int history_pointer;
int t;
free(history_pointer);
history_pointer = malloc(history.items.data_size+256);
strcat(history_pointer, HISTORY_HEADER);
for (i=0; i");
strcat(history_pointer, history.items.get(i));
strcat(history_pointer, "
");
}
/*
strcat(history_pointer, "
Cached images
");
for (i=1; i");
strcat(history_pointer, #pics[i].path);
strcat(history_pointer, "
");
// strcat(history_pointer, "
");
// strcat(history_pointer, #pics[i].path);
}
*/
strcat(history_pointer, "");
LoadInternalPage(history_pointer, strlen(history_pointer));
}