~ubuntu-branches/ubuntu/feisty/elinks/feisty-updates

« back to all changes in this revision

Viewing changes to src/sched/location.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Gervai
  • Date: 2004-01-21 22:13:45 UTC
  • Revision ID: james.westby@ubuntu.com-20040121221345-ju33hai1yhhqt6kn
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: location.h,v 1.9 2003/10/23 22:15:17 pasky Exp $ */
 
2
 
 
3
#ifndef EL__SCHED_LOCATION_H
 
4
#define EL__SCHED_LOCATION_H
 
5
 
 
6
#include "sched/connection.h"
 
7
#include "util/lists.h"
 
8
#include "viewer/text/vs.h"
 
9
 
 
10
struct location {
 
11
        LIST_HEAD(struct location);
 
12
 
 
13
        struct list_head frames;
 
14
        struct download download;
 
15
        struct view_state vs; /* has to be last */
 
16
};
 
17
 
 
18
 
 
19
void copy_location(struct location *, struct location *);
 
20
 
 
21
/* You probably want to call del_from_history() first! */
 
22
void destroy_location(struct location *);
 
23
 
 
24
#endif