1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-17 06:24:12 -04:00
elinks/src/session/location.h

34 lines
602 B
C
Raw Normal View History

#ifndef EL__SESSION_LOCATION_H
#define EL__SESSION_LOCATION_H
#include "session/download.h"
#include "session/session.h"
#include "util/lists.h"
#include "viewer/text/vs.h"
#ifdef __cplusplus
extern "C" {
#endif
struct location {
LIST_HEAD_EL(struct location);
2007-07-26 15:39:08 -04:00
LIST_OF(struct frame) frames;
LIST_OF(struct frame) iframes;
struct download download;
struct view_state vs;
};
void copy_location(struct location *, struct location *);
2007-07-27 07:14:00 -04:00
/** You probably want to call del_from_history() first!
* @relates location */
void destroy_location(struct location *);
#ifdef __cplusplus
}
#endif
#endif