1146515Sru/* xref.h -- declarations for the cross references.
2146515Sru   $Id: xref.h,v 1.1 2004/04/11 17:56:47 karl Exp $
3146515Sru
4146515Sru   Copyright (C) 2004 Free Software Foundation, Inc.
5146515Sru
6146515Sru   This program is free software; you can redistribute it and/or modify
7146515Sru   it under the terms of the GNU General Public License as published by
8146515Sru   the Free Software Foundation; either version 2, or (at your option)
9146515Sru   any later version.
10146515Sru
11146515Sru   This program is distributed in the hope that it will be useful,
12146515Sru   but WITHOUT ANY WARRANTY; without even the implied warranty of
13146515Sru   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14146515Sru   GNU General Public License for more details.
15146515Sru
16146515Sru   You should have received a copy of the GNU General Public License
17146515Sru   along with this program; if not, write to the Free Software Foundation,
18146515Sru   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19146515Sru
20146515Sru#ifndef XREF_H
21146515Sru#define XREF_H
22146515Sru
23146515Sruenum reftype
24146515Sru{
25146515Sru  menu_reference, followed_reference
26146515Sru};
27146515Sru
28146515Sruextern char *get_xref_token (int expand);
29146515Sru
30146515Sru#endif /* not XREF_H */
31