home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 110 / EnigmaAmiga110CD.iso / indispensabili / utility / apdf / xpdf-0.80 / xpdf / error.h < prev    next >
C/C++ Source or Header  |  1998-11-27  |  478b  |  27 lines

  1. //========================================================================
  2. //
  3. // Error.h
  4. //
  5. // Copyright 1996 Derek B. Noonburg
  6. //
  7. //========================================================================
  8.  
  9. #ifndef ERROR_H
  10. #define ERROR_H
  11.  
  12. #ifdef __GNUC__
  13. #pragma interface
  14. #endif
  15.  
  16. #include <stdio.h>
  17. #include "config.h"
  18.  
  19. // File to send error (and other) messages to.
  20. //extern FILE *errFile;
  21.  
  22. extern void errorInit();
  23.  
  24. extern void CDECL error(int pos, char *msg, ...);
  25.  
  26. #endif
  27.