Initial revision
[swftools.git] / pdf2swf / xpdf / Error.h
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