mri.h 1.5 KB

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