133965Sjdp/* mri.h -- header file for MRI scripting functions
2130561Sobrien   Copyright 1993, 1995, 1996, 2003 Free Software Foundation, Inc.
333965Sjdp
433965SjdpThis file is part of GLD, the Gnu Linker.
533965Sjdp
633965SjdpThis program is free software; you can redistribute it and/or modify
733965Sjdpit under the terms of the GNU General Public License as published by
833965Sjdpthe Free Software Foundation; either version 2 of the License, or
933965Sjdp(at your option) any later version.
1033965Sjdp
1133965SjdpThis program is distributed in the hope that it will be useful,
1233965Sjdpbut WITHOUT ANY WARRANTY; without even the implied warranty of
1333965SjdpMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1433965SjdpGNU General Public License for more details.
1533965Sjdp
1633965SjdpYou should have received a copy of the GNU General Public License
1733965Sjdpalong with this program; if not, write to the Free Software
18218822SdimFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
1933965Sjdp
2033965Sjdp#ifndef MRI_H
2133965Sjdp#define MRI_H
2233965Sjdp
23130561Sobrienextern void mri_output_section (const char *, etree_type *);
24130561Sobrienextern void mri_only_load (const char *);
25130561Sobrienextern void mri_base (etree_type *);
26130561Sobrienextern void mri_load (const char *);
27130561Sobrienextern void mri_order (const char *);
28130561Sobrienextern void mri_alias (const char *, const char *, int);
29130561Sobrienextern void mri_name (const char *);
30130561Sobrienextern void mri_format (const char *);
31130561Sobrienextern void mri_public (const char *, etree_type *);
32130561Sobrienextern void mri_align (const char *, etree_type *);
33130561Sobrienextern void mri_alignmod (const char *, etree_type *);
34130561Sobrienextern void mri_truncate (unsigned int);
35130561Sobrienextern void mri_draw_tree (void);
3633965Sjdp
3733965Sjdp#endif
38