2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__SESSION_LOCATION_H
|
|
|
|
#define EL__SESSION_LOCATION_H
|
|
|
|
|
|
|
|
#include "session/download.h"
|
|
|
|
#include "util/lists.h"
|
|
|
|
#include "viewer/text/vs.h"
|
|
|
|
|
|
|
|
struct location {
|
|
|
|
LIST_HEAD(struct location);
|
|
|
|
|
2007-07-26 15:39:08 -04:00
|
|
|
LIST_OF(struct frame) frames;
|
2005-09-15 09:58:31 -04:00
|
|
|
struct download download;
|
|
|
|
struct view_state vs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void copy_location(struct location *, struct location *);
|
|
|
|
|
2007-07-26 20:07:39 -04:00
|
|
|
/** You probably want to call del_from_history() first! */
|
2005-09-15 09:58:31 -04:00
|
|
|
void destroy_location(struct location *);
|
|
|
|
|
|
|
|
#endif
|