dlltool.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* dlltool.h -- header file for dlltool
  2. Copyright (C) 1997-2022 Free Software Foundation, Inc.
  3. This file is part of 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, MA
  15. 02110-1301, USA. */
  16. extern void def_code (int);
  17. extern void def_data (int);
  18. extern void def_description (const char *);
  19. extern void def_exports (const char *, const char *, int, int, int, int, int, const char *);
  20. extern void def_heapsize (int, int);
  21. extern void def_import
  22. (const char *, const char *, const char *, const char *, int, const char *);
  23. extern void def_library (const char *, int);
  24. extern void def_name (const char *, int);
  25. extern void def_section (const char *, int);
  26. extern void def_stacksize (int, int);
  27. extern void def_version (int, int);
  28. extern int yyparse (void);
  29. extern void yyerror (const char *);
  30. extern int yylex (void);
  31. extern int yydebug;
  32. extern FILE *yyin;
  33. extern int linenumber;