xref: /openbsd-src/gnu/usr.bin/texinfo/makeinfo/xref.h (revision a1acfa9b69ad64eb720639240c8438f11107dc85)
1*a1acfa9bSespie /* xref.h -- declarations for the cross references.
2*a1acfa9bSespie    $Id: xref.h,v 1.1.1.1 2006/07/17 16:03:49 espie Exp $
3*a1acfa9bSespie 
4*a1acfa9bSespie    Copyright (C) 2004 Free Software Foundation, Inc.
5*a1acfa9bSespie 
6*a1acfa9bSespie    This program is free software; you can redistribute it and/or modify
7*a1acfa9bSespie    it under the terms of the GNU General Public License as published by
8*a1acfa9bSespie    the Free Software Foundation; either version 2, or (at your option)
9*a1acfa9bSespie    any later version.
10*a1acfa9bSespie 
11*a1acfa9bSespie    This program is distributed in the hope that it will be useful,
12*a1acfa9bSespie    but WITHOUT ANY WARRANTY; without even the implied warranty of
13*a1acfa9bSespie    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*a1acfa9bSespie    GNU General Public License for more details.
15*a1acfa9bSespie 
16*a1acfa9bSespie    You should have received a copy of the GNU General Public License
17*a1acfa9bSespie    along with this program; if not, write to the Free Software Foundation,
18*a1acfa9bSespie    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19*a1acfa9bSespie 
20*a1acfa9bSespie #ifndef XREF_H
21*a1acfa9bSespie #define XREF_H
22*a1acfa9bSespie 
23*a1acfa9bSespie enum reftype
24*a1acfa9bSespie {
25*a1acfa9bSespie   menu_reference, followed_reference
26*a1acfa9bSespie };
27*a1acfa9bSespie 
28*a1acfa9bSespie extern char *get_xref_token (int expand);
29*a1acfa9bSespie 
30*a1acfa9bSespie #endif /* not XREF_H */
31