home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / emxtutor.zip / emxsrcd1.zip / emx / src / emxomf / emxomf.h < prev    next >
C/C++ Source or Header  |  1996-08-04  |  2KB  |  45 lines

  1. /* emxomf.h -- Global header file for emxomf
  2.    Copyright (c) 1992-1996 Eberhard Mattes
  3.  
  4. This file is part of emxomf.
  5.  
  6. emxomf is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. emxomf is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with emxomf; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.  */
  20.  
  21.  
  22. /* These functions are defined in emxomf.c. */
  23.  
  24. extern void error (const char *fmt, ...) NORETURN2 ATTR_PRINTF (1, 2);
  25. extern void warning (const char *fmt, ...) ATTR_PRINTF (1, 2);
  26. extern void *xmalloc (size_t n);
  27. void *xrealloc (void *ptr, size_t n);
  28. char *xstrdup (const char *s);
  29. extern const struct nlist *find_symbol (const char *name);
  30.  
  31. /* These variables are defined in emxomf.c. */
  32.  
  33. extern int sym_count;
  34. extern const struct nlist *sym_ptr;
  35. extern const byte *str_ptr;
  36. extern byte *text_ptr;
  37. extern long text_size;
  38. extern struct buffer tt;
  39. extern struct buffer sst;
  40. extern struct buffer sst_reloc;
  41. extern struct grow sst_boundary_grow;
  42. extern struct grow tt_boundary_grow;
  43. extern int *sst_boundary;
  44. extern int *tt_boundary;
  45.