Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/Error.h
blob: f651678c85c44405b3e9c83c5e294591e10254f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//========================================================================
//
// Error.h
//
// Copyright 1996 Derek B. Noonburg
//
//========================================================================

#ifndef ERROR_H
#define ERROR_H

#ifdef __GNUC__
#pragma interface
#endif

#include <stdio.h>
#include "config.h"

// File to send error (and other) messages to.
extern FILE *errFile;

extern void errorInit();

extern void CDECL error(int pos, char *msg, ...);

#endif