]> git.ipfire.org Git - thirdparty/cups.git/blame - filter/common.h
Mirror 1.1.x changes.
[thirdparty/cups.git] / filter / common.h
CommitLineData
2d35d8ee 1/*
dab1a4d8 2 * "$Id: common.h,v 1.6.2.4 2002/03/01 19:55:16 mike Exp $"
2d35d8ee 3 *
4 * Common filter definitions for the Common UNIX Printing System (CUPS).
5 *
839c43aa 6 * Copyright 1997-2002 by Easy Software Products.
2d35d8ee 7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636-3111 USA
19 *
20 * Voice: (301) 373-9603
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
dab1a4d8 23 *
24 * This file is subject to the Apple OS-Developed Software exception.
2d35d8ee 25 */
26
27/*
28 * Include necessary headers...
29 */
30
31#include <stdio.h>
32#include <stdlib.h>
33#include <string.h>
34#include <errno.h>
35#include <ctype.h>
36#include <time.h>
37
38#include <cups/cups.h>
39#include <cups/language.h>
40#include <cups/string.h>
41
42
43/*
44 * Globals...
45 */
46
47extern int Orientation, /* 0 = portrait, 1 = landscape, etc. */
48 Duplex, /* Duplexed? */
49 LanguageLevel, /* Language level of printer */
50 ColorDevice; /* Do color text? */
51extern float PageLeft, /* Left margin */
52 PageRight, /* Right margin */
53 PageBottom, /* Bottom margin */
54 PageTop, /* Top margin */
55 PageWidth, /* Total page width */
56 PageLength; /* Total page length */
57
58
59/*
60 * Prototypes...
61 */
62
4e989042 63extern ppd_file_t *SetCommonOptions(int num_options, cups_option_t *options,
64 int change_size);
b5cb0608 65extern void UpdatePageVars(void);
8b8cca8e 66extern void WriteLabelProlog(const char *label, float bottom,
67 float top, float width);
68extern void WriteLabels(int orient);
2d35d8ee 69
70
71/*
dab1a4d8 72 * End of "$Id: common.h,v 1.6.2.4 2002/03/01 19:55:16 mike Exp $".
2d35d8ee 73 */