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

« back to all changes in this revision

Viewing changes to src/osdep/newwin.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: newwin.h,v 1.2 2003/10/28 00:00:36 pasky Exp $ */
 
2
 
 
3
#ifndef EL__DIALOG_SYSTEM_H
 
4
#define EL__DIALOG_SYSTEM_H
 
5
 
 
6
#include "terminal/terminal.h"
 
7
 
 
8
struct open_in_new {
 
9
        unsigned char *text;
 
10
        void (*fn)(struct terminal *term, unsigned char *, unsigned char *);
 
11
};
 
12
 
 
13
struct open_in_new *get_open_in_new(int);
 
14
int can_open_in_new(struct terminal *);
 
15
 
 
16
#endif