1/*
2 * "$Id: print-print.c,v 1.1 2006/07/04 02:57:59 rlk Exp $"
3 *
4 *   Print plug-in for the GIMP.
5 *
6 *   Copyright 1997-2000 Michael Sweet (mike@easysw.com) and
7 *	Robert Krawitz (rlk@alum.mit.edu)
8 *
9 *   This program is free software; you can redistribute it and/or modify it
10 *   under the terms of the GNU General Public License as published by the Free
11 *   Software Foundation; either version 2 of the License, or (at your option)
12 *   any later version.
13 *
14 *   This program is distributed in the hope that it will be useful, but
15 *   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 *   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 *   for more details.
18 *
19 *   You should have received a copy of the GNU General Public License
20 *   along with this program; if not, write to the Free Software
21 *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24#ifdef HAVE_CONFIG_H
25#include <config.h>
26#endif
27
28#include <gutenprintui2/gutenprintui.h>
29#include "print_gimp.h"
30
31#include "print-intl.h"
32
33void
34do_gimp_install_procedure(const char *blurb, const char *help,
35			  const char *auth, const char *copy,
36			  const char *types, int n_args,
37			  GimpParamDef *args)
38{
39  gimp_install_procedure ((BAD_CONST_CHAR) "file_print_gimp",
40			  (BAD_CONST_CHAR) blurb,
41			  (BAD_CONST_CHAR) help,
42			  (BAD_CONST_CHAR) auth,
43			  (BAD_CONST_CHAR) copy,
44			  (BAD_CONST_CHAR) VERSION " - " RELEASE_DATE,
45			  /* Do not translate the prefix "<Image>" */
46			  (BAD_CONST_CHAR) N_("<Image>/File/Print..."),
47			  (BAD_CONST_CHAR) types,
48			  GIMP_PLUGIN,
49			  n_args, 0,
50			  args, NULL);
51}
52
53