]> git.ipfire.org Git - thirdparty/cups.git/blame - filter/form-main.c
Merge changes from CUPS 1.5svn-r8950.
[thirdparty/cups.git] / filter / form-main.c
CommitLineData
ef416fc2 1/*
bc44d920 2 * "$Id: form-main.c 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3 *
4 * CUPS form main entry for the Common UNIX Printing System (CUPS).
5 *
bc44d920 6 * Copyright 2007 by Apple Inc.
ef416fc2 7 * Copyright 1997-2005 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 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/".
ef416fc2 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
33int NumOptions; /* Number of command-line options */
34cups_option_t *Options; /* Command-line options */
35ppd_file_t *PPD; /* PPD file */
36
37
38/*
39 * 'main()' - Load the specified form file and output PostScript.
40 */
41
42int /* O - Exit status */
43main(int argc, /* I - Number of command-line arguments */
44 char *argv[]) /* I - Command-line arguments */
45{
46
47 return (0);
48}
49
50
51/*
bc44d920 52 * End of "$Id: form-main.c 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 53 */