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

« back to all changes in this revision

Viewing changes to info/indices.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
/* indices.h -- Functions defined in indices.c.
2
 
   $Id: indices.h,v 1.2 1997/07/06 20:50:29 karl Exp $
 
2
   $Id: indices.h,v 1.3 2004/04/11 17:56:45 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
28
28
/* User-visible variable controls the output of info-index-next. */
29
29
extern int show_index_match;
30
30
 
31
 
extern REFERENCE **info_indices_of_window (), **info_indices_of_file_buffer ();
32
 
extern void info_apropos ();
 
31
extern REFERENCE **info_indices_of_window (WINDOW *window);
 
32
extern REFERENCE **info_indices_of_file_buffer (FILE_BUFFER *file_buffer);
 
33
extern void info_apropos (char *string);
33
34
 
34
35
/* For every menu item in DIR, search the indices of that file for STRING. */
35
 
REFERENCE **apropos_in_all_indices ();
 
36
REFERENCE **apropos_in_all_indices (char *search_string, int inform);
36
37
 
37
38
/* User visible functions declared in indices.c. */
38
 
extern void info_index_search (), info_next_index_match ();
39
 
extern void do_info_index_search ();
40
 
extern int index_intry_exists ();
 
39
extern void info_index_search (WINDOW *window, int count, unsigned char key);
 
40
extern void info_next_index_match (WINDOW *window, int count, unsigned char key);
 
41
extern void info_index_apropos (WINDOW *window, int count, unsigned char key);
 
42
extern void do_info_index_search (WINDOW *window, int count, char *search_string);
 
43
extern int index_entry_exists (WINDOW *window, char *string);
41
44
 
42
45
#endif /* not INFO_INDICES_H */