]> git.ipfire.org Git - thirdparty/cups.git/blame - filter/form-main.c
Cleanup.
[thirdparty/cups.git] / filter / form-main.c
CommitLineData
a2c6b8b1 1/*
9639c4de 2 * "$Id: form-main.c,v 1.3.2.4 2004/06/29 13:15:09 mike Exp $"
a2c6b8b1 3 *
4 * CUPS form main entry for the Common UNIX Printing System (CUPS).
5 *
9639c4de 6 * Copyright 1997-2004 by Easy Software Products.
a2c6b8b1 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
9639c4de 18 * Hollywood, Maryland 20636-3142 USA
a2c6b8b1 19 *
9639c4de 20 * Voice: (301) 373-9600
a2c6b8b1 21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
dab1a4d8 24 * This file is subject to the Apple OS-Developed Software exception.
25 *
a2c6b8b1 26 * Contents:
27 *
caa58f49 28 * main() - Load the specified form file and output PostScript.
a2c6b8b1 29 */
30
31/*
32 * Include necessary headers...
33 */
34
35#include "form.h"
36
37
38/*
caa58f49 39 * Globals...
40 */
41
42int NumOptions; /* Number of command-line options */
43cups_option_t *Options; /* Command-line options */
44ppd_file_t *PPD; /* PPD file */
45
46
47/*
48 * 'main()' - Load the specified form file and output PostScript.
49 */
50
51int /* O - Exit status */
52main(int argc, /* I - Number of command-line arguments */
53 char *argv[]) /* I - Command-line arguments */
54{
55
56 return (0);
57}
58
59
60/*
9639c4de 61 * End of "$Id: form-main.c,v 1.3.2.4 2004/06/29 13:15:09 mike Exp $".
a2c6b8b1 62 */