150477Speter/* sym_ids.h
235388Smjacob
335388Smjacob   Copyright (C) 2000-2020 Free Software Foundation, Inc.
435388Smjacob
535388Smjacob   This file is part of GNU Binutils.
645040Smjacob
735388Smjacob   This program is free software; you can redistribute it and/or modify
835388Smjacob   it under the terms of the GNU General Public License as published by
945040Smjacob   the Free Software Foundation; either version 3 of the License, or
1035388Smjacob   (at your option) any later version.
1135388Smjacob
1235388Smjacob   This program is distributed in the hope that it will be useful,
1335388Smjacob   but WITHOUT ANY WARRANTY; without even the implied warranty of
1435388Smjacob   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1535388Smjacob   GNU General Public License for more details.
1635388Smjacob
1735388Smjacob   You should have received a copy of the GNU General Public License
1835388Smjacob   along with this program; if not, write to the Free Software
1935388Smjacob   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
2035388Smjacob   MA 02110-1301, USA.  */
2135388Smjacob
2235388Smjacob#ifndef sym_ids_h
2335388Smjacob#define sym_ids_h
2435388Smjacob
2535388Smjacobtypedef enum
2635388Smjacob  {
2735388Smjacob    INCL_GRAPH = 0, EXCL_GRAPH,
2835388Smjacob    INCL_ARCS, EXCL_ARCS,
2935388Smjacob    INCL_FLAT, EXCL_FLAT,
3035388Smjacob    INCL_TIME, EXCL_TIME,
3135388Smjacob    INCL_ANNO, EXCL_ANNO,
3235388Smjacob    INCL_EXEC, EXCL_EXEC,
3335388Smjacob    NUM_TABLES
3435388Smjacob  }
3535388SmjacobTable_Id;
3635388Smjacob
3735388Smjacobextern Sym_Table syms[NUM_TABLES];
3835388Smjacob
3935388Smjacobextern void sym_id_add (const char *, Table_Id);
4035388Smjacobextern void sym_id_parse (void);
4135388Smjacobextern bfd_boolean sym_id_arc_is_present (Sym_Table *, Sym *, Sym *);
4235388Smjacob
4335388Smjacob#endif /* sym_ids_h */
4435388Smjacob