home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enigma Amiga Life 110
/
EnigmaAmiga110CD.iso
/
indispensabili
/
utility
/
apdf
/
xpdf-0.80
/
xpdf
/
params.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-04-12
|
952b
|
42 lines
//========================================================================
//
// Params.h
//
// Copyright 1996 Derek B. Noonburg
//
//========================================================================
#ifndef PARAMS_H
#define PARAMS_H
// Print commands as they're executed.
#ifdef NO_PRINT_COMMANDS
static const GBool printCommands = gFalse;
#else
extern GBool printCommands;
#endif
// Send error messages to /dev/tty instead of stderr.
extern GBool errorsToTTY;
// Font search path.
extern char **fontPath;
// Mapping from PDF font name to device font name.
struct DevFontMapEntry {
char *pdfFont;
char *devFont;
};
extern DevFontMapEntry *devFontMap;
//------------------------------------------------------------------------
// Initialize font path and font map, and read configuration file,
// if present.
extern void initParams(char *configFile);
// Free memory used for font path and font map.
extern void freeParams();
#endif