]> git.ipfire.org Git - thirdparty/cups.git/blob - filter/form-main.c
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / filter / form-main.c
1 /*
2 * "$Id: form-main.c 177 2006-06-21 00:20:03Z jlovell $"
3 *
4 * CUPS form main entry for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 1997-2005 by Easy Software Products.
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 USA
19 *
20 * Voice: (301) 373-9600
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
24 * This file is subject to the Apple OS-Developed Software exception.
25 *
26 * Contents:
27 *
28 * main() - Load the specified form file and output PostScript.
29 */
30
31 /*
32 * Include necessary headers...
33 */
34
35 #include "form.h"
36
37
38 /*
39 * Globals...
40 */
41
42 int NumOptions; /* Number of command-line options */
43 cups_option_t *Options; /* Command-line options */
44 ppd_file_t *PPD; /* PPD file */
45
46
47 /*
48 * 'main()' - Load the specified form file and output PostScript.
49 */
50
51 int /* O - Exit status */
52 main(int argc, /* I - Number of command-line arguments */
53 char *argv[]) /* I - Command-line arguments */
54 {
55
56 return (0);
57 }
58
59
60 /*
61 * End of "$Id: form-main.c 177 2006-06-21 00:20:03Z jlovell $".
62 */