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

« back to all changes in this revision

Viewing changes to info/info.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
/* info.h -- Header file which includes all of the other headers.
2
 
   $Id: info.h,v 1.16 2002/02/23 19:12:02 karl Exp $
 
2
   $Id: info.h,v 1.4 2004/04/11 17:56:45 karl Exp $
3
3
 
4
 
   Copyright (C) 1993, 97, 98, 99, 2001 Free Software Foundation, Inc.
 
4
   Copyright (C) 1993, 1997, 1998, 1999, 2001, 2002, 2003, 2004 Free Software
 
5
   Foundation, Inc.
5
6
 
6
7
   This program is free software; you can redistribute it and/or modify
7
8
   it under the terms of the GNU General Public License as published by
125
126
/* Print FORMAT with ARG1 and ARG2.  If the window system was initialized,
126
127
   then the message is printed in the echo area.  Otherwise, a message is
127
128
   output to stderr. */
128
 
extern void info_error ();
 
129
extern void info_error (char *format, void *arg1, void *arg2);
 
130
 
 
131
extern void add_file_directory_to_path (char *filename);
129
132
 
130
133
/* Error message defines. */
131
 
extern char *msg_cant_find_node;
132
 
extern char *msg_cant_file_node;
133
 
extern char *msg_cant_find_window;
134
 
extern char *msg_cant_find_point;
135
 
extern char *msg_cant_kill_last;
136
 
extern char *msg_no_menu_node;
137
 
extern char *msg_no_foot_node;
138
 
extern char *msg_no_xref_node;
139
 
extern char *msg_no_pointer;
140
 
extern char *msg_unknown_command;
141
 
extern char *msg_term_too_dumb;
142
 
extern char *msg_at_node_bottom;
143
 
extern char *msg_at_node_top;
144
 
extern char *msg_one_window;
145
 
extern char *msg_win_too_small;
146
 
extern char *msg_cant_make_help;
 
134
extern const char *msg_cant_find_node;
 
135
extern const char *msg_cant_file_node;
 
136
extern const char *msg_cant_find_window;
 
137
extern const char *msg_cant_find_point;
 
138
extern const char *msg_cant_kill_last;
 
139
extern const char *msg_no_menu_node;
 
140
extern const char *msg_no_foot_node;
 
141
extern const char *msg_no_xref_node;
 
142
extern const char *msg_no_pointer;
 
143
extern const char *msg_unknown_command;
 
144
extern const char *msg_term_too_dumb;
 
145
extern const char *msg_at_node_bottom;
 
146
extern const char *msg_at_node_top;
 
147
extern const char *msg_one_window;
 
148
extern const char *msg_win_too_small;
 
149
extern const char *msg_cant_make_help;
147
150
 
148
151
 
149
 
extern char *filename_non_directory (); /* Found in info-utils.c. */
150
 
 
151
152
#if defined(INFOKEY)
152
 
extern void set_variable_to_value ();   /* Found in variables.c. */
 
153
/* Found in variables.c. */
 
154
extern void set_variable_to_value (char *name, char *value);
153
155
#endif /* INFOKEY */
154
156
 
155
 
#if !defined (BUILDING_LIBRARY)
156
 
extern int info_windows_initialized_p;  /* Found in session.c */
157
 
/* Found in window.c. */
158
 
extern void message_in_echo_area (), unmessage_in_echo_area ();
159
 
#endif /* !BUILDING_LIBRARY */
 
157
/* Found in m-x.c.  */
 
158
extern char *read_function_name (char *prompt, WINDOW *window);
160
159
 
161
160
#endif /* !INFO_H */