]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/emit.c
Added WIN32 project files.
[thirdparty/cups.git] / cups / emit.c
CommitLineData
ea930040 1/*
3a193f5e 2 * "$Id: emit.c,v 1.3 1999/01/24 14:18:43 mike Exp $"
ea930040 3 *
3a193f5e 4 * PPD code emission routines for the Common UNIX Printing System (CUPS).
ea930040 5 *
3a193f5e 6 * Copyright 1997-1999 by Easy Software Products, all rights reserved.
ea930040 7 *
3a193f5e 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
ea930040 16 * Easy Software Products
17 * 44145 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
23 *
2b85e375 24 * PostScript is a trademark of Adobe Systems, Inc.
25 *
ea930040 26 * Contents:
27 *
2b85e375 28 * ppdEmit() - Emit code for marked options to a file.
29 * ppdEmitFd() - Emit code for marked options to a file.
ea930040 30 */
31
32/*
2b85e375 33 * Include necessary headers...
34 */
35
36#include "ppd.h"
37
38
39/*
40 * 'ppdEmit()' - Emit code for marked options to a file.
41 */
42
43int /* O - 0 on success, -1 on failure */
44ppdEmit(ppd_file_t *ppd, /* I - PPD file record */
45 FILE *fp, /* I - File to write to */
46 ppd_section_t section) /* I - Section to write */
47{
48 return (0);
49}
50
51
52/*
53 * 'ppdEmitFd()' - Emit code for marked options to a file.
ea930040 54 */
55
2b85e375 56int /* O - 0 on success, -1 on failure */
57ppdEmitFd(ppd_file_t *ppd, /* I - PPD file record */
58 int fd, /* I - File to write to */
59 ppd_section_t section) /* I - Section to write */
60{
61 return (0);
62}
ea930040 63
64
65/*
3a193f5e 66 * End of "$Id: emit.c,v 1.3 1999/01/24 14:18:43 mike Exp $".
ea930040 67 */