mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
acf2ec806b
A left over from the CVS Id removal. Also, for a few files, normalize the order in which things are declared in headers.
22 lines
557 B
C
22 lines
557 B
C
#ifndef EL__DOCUMENT_REFRESH_H
|
|
#define EL__DOCUMENT_REFRESH_H
|
|
|
|
#include "main/timer.h" /* timer_id_T */
|
|
|
|
struct session;
|
|
struct uri;
|
|
|
|
struct document_refresh {
|
|
timer_id_T timer;
|
|
unsigned long seconds;
|
|
struct uri *uri;
|
|
unsigned int restart:1;
|
|
};
|
|
|
|
struct document_refresh *init_document_refresh(unsigned char *url, unsigned long seconds);
|
|
void done_document_refresh(struct document_refresh *refresh);
|
|
void kill_document_refresh(struct document_refresh *refresh);
|
|
void start_document_refresh(struct document_refresh *refresh, struct session *ses);
|
|
|
|
#endif
|