1/* GTK - The GIMP Toolkit
2 * gtkprintbackendlpr.h: LPR implementation of GtkPrintBackend
3 * for printing to lpr
4 * Copyright (C) 2006, 2007 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef __GTK_PRINT_BACKEND_LPR_H__
21#define __GTK_PRINT_BACKEND_LPR_H__
22
23#include <glib-object.h>
24#include "gtkprintbackendprivate.h"
25
26G_BEGIN_DECLS
27
28#define GTK_TYPE_PRINT_BACKEND_LPR (gtk_print_backend_lpr_get_type ())
29#define GTK_PRINT_BACKEND_LPR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_BACKEND_LPR, GtkPrintBackendLpr))
30#define GTK_IS_PRINT_BACKEND_LPR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_BACKEND_LPR))
31
32typedef struct _GtkPrintBackendLpr GtkPrintBackendLpr;
33
34GtkPrintBackend *gtk_print_backend_lpr_new (void);
35GType gtk_print_backend_lpr_get_type (void) G_GNUC_CONST;
36
37G_END_DECLS
38
39#endif /* __GTK_PRINT_BACKEND_LPR_H__ */
40
41
42

source code of gtk/modules/printbackends/gtkprintbackendlpr.h