1*1424dfb3Schristos /* mri.h -- header file for MRI scripting functions 2*1424dfb3Schristos Copyright (C) 1993-2020 Free Software Foundation, Inc. 3*1424dfb3Schristos 4*1424dfb3Schristos This file is part of the GNU Binutils. 5*1424dfb3Schristos 6*1424dfb3Schristos This program is free software; you can redistribute it and/or modify 7*1424dfb3Schristos it under the terms of the GNU General Public License as published by 8*1424dfb3Schristos the Free Software Foundation; either version 3 of the License, or 9*1424dfb3Schristos (at your option) any later version. 10*1424dfb3Schristos 11*1424dfb3Schristos This program is distributed in the hope that it will be useful, 12*1424dfb3Schristos but WITHOUT ANY WARRANTY; without even the implied warranty of 13*1424dfb3Schristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14*1424dfb3Schristos GNU General Public License for more details. 15*1424dfb3Schristos 16*1424dfb3Schristos You should have received a copy of the GNU General Public License 17*1424dfb3Schristos along with this program; if not, write to the Free Software 18*1424dfb3Schristos Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 19*1424dfb3Schristos MA 02110-1301, USA. */ 20*1424dfb3Schristos 21*1424dfb3Schristos #ifndef MRI_H 22*1424dfb3Schristos #define MRI_H 23*1424dfb3Schristos 24*1424dfb3Schristos extern void mri_output_section (const char *, etree_type *); 25*1424dfb3Schristos extern void mri_only_load (const char *); 26*1424dfb3Schristos extern void mri_base (etree_type *); 27*1424dfb3Schristos extern void mri_load (const char *); 28*1424dfb3Schristos extern void mri_order (const char *); 29*1424dfb3Schristos extern void mri_alias (const char *, const char *, int); 30*1424dfb3Schristos extern void mri_name (const char *); 31*1424dfb3Schristos extern void mri_format (const char *); 32*1424dfb3Schristos extern void mri_public (const char *, etree_type *); 33*1424dfb3Schristos extern void mri_align (const char *, etree_type *); 34*1424dfb3Schristos extern void mri_alignmod (const char *, etree_type *); 35*1424dfb3Schristos extern void mri_truncate (unsigned int); 36*1424dfb3Schristos extern void mri_draw_tree (void); 37*1424dfb3Schristos 38*1424dfb3Schristos #endif 39