~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to info/variables.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* variables.h -- Description of user visible variables in Info.
2
 
   $Id: variables.h,v 1.3 1997/07/15 18:44:23 karl Exp $
 
2
   $Id: variables.h,v 1.3 2004/04/11 17:56:46 karl Exp $
3
3
 
4
4
   This file is part of GNU Info, a program for reading online documentation
5
5
   stored in Info format.
6
6
 
7
 
   Copyright (C) 1993, 97 Free Software Foundation, Inc.
 
7
   Copyright (C) 1993, 1997, 2004 Free Software Foundation, Inc.
8
8
 
9
9
   This program is free software; you can redistribute it and/or modify
10
10
   it under the terms of the GNU General Public License as published by
42
42
/* Read the name of an Info variable in the echo area and return the
43
43
   address of a VARIABLE_ALIST member.  A return value of NULL indicates
44
44
   that no variable could be read. */
45
 
extern VARIABLE_ALIST *read_variable_name ();
 
45
extern VARIABLE_ALIST *read_variable_name (char *prompt, WINDOW *window);
46
46
 
47
47
/* Make an array of REFERENCE which actually contains the names of the
48
48
   variables available in Info. */
49
 
extern REFERENCE **make_variable_completions_array ();
 
49
extern REFERENCE **make_variable_completions_array (void);
50
50
 
51
51
/* Set the value of an info variable. */
52
 
extern void set_variable ();
 
52
extern void set_variable (WINDOW *window, int count, unsigned char key);
 
53
extern void describe_variable (WINDOW *window, int count, unsigned char key);
53
54
 
54
55
/* The list of user-visible variables. */
55
56
extern int auto_footnotes_p;