]> git.ipfire.org Git - thirdparty/cups.git/blob - filter/form-main.c
Load cups into easysw/current.
[thirdparty/cups.git] / filter / form-main.c
1 /*
2 * "$Id: form-main.c 6649 2007-07-11 21:46:42Z mike $"
3 *
4 * CUPS form main entry for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 2007 by Apple Inc.
7 * Copyright 1997-2005 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 *
17 * Contents:
18 *
19 * main() - Load the specified form file and output PostScript.
20 */
21
22 /*
23 * Include necessary headers...
24 */
25
26 #include "form.h"
27
28
29 /*
30 * Globals...
31 */
32
33 int NumOptions; /* Number of command-line options */
34 cups_option_t *Options; /* Command-line options */
35 ppd_file_t *PPD; /* PPD file */
36
37
38 /*
39 * 'main()' - Load the specified form file and output PostScript.
40 */
41
42 int /* O - Exit status */
43 main(int argc, /* I - Number of command-line arguments */
44 char *argv[]) /* I - Command-line arguments */
45 {
46
47 return (0);
48 }
49
50
51 /*
52 * End of "$Id: form-main.c 6649 2007-07-11 21:46:42Z mike $".
53 */