~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): Martin Pitt
  • Date: 2006-06-30 08:57:43 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630085743-l81fgbw9dehvl1ds
Tags: 0.11.1-1ubuntu1
* Merge to Debian unstable.
* Removed gnutls12 porting, this is upstream now.
* Only Ubuntu changes left:
  - Killed type-handling.
  - Add X-Ubuntu-Gettext-Domain to .desktop files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: location.h,v 1.14 2004/04/01 15:59:52 jonas 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;
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