mirror of https://github.com/GNOME/gimp.git
68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995-1999 Spencer Kimball and Peter Mattis
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* NOTE: This file is autogenerated by pdbgen.pl. */
|
|
|
|
#include "procedural_db.h"
|
|
|
|
#include "libgimp/gimpfeatures.h"
|
|
|
|
static ProcRecord version_proc;
|
|
|
|
void
|
|
register_misc_procs (void)
|
|
{
|
|
procedural_db_register (&version_proc);
|
|
}
|
|
|
|
static Argument *
|
|
version_invoker (Argument *args)
|
|
{
|
|
Argument *return_args;
|
|
|
|
return_args = procedural_db_return_args (&version_proc, TRUE);
|
|
return_args[1].value.pdb_pointer = g_strdup (GIMP_VERSION);
|
|
|
|
return return_args;
|
|
}
|
|
|
|
static ProcArg version_outargs[] =
|
|
{
|
|
{
|
|
PDB_STRING,
|
|
"version",
|
|
"The gimp version"
|
|
}
|
|
};
|
|
|
|
static ProcRecord version_proc =
|
|
{
|
|
"gimp_version",
|
|
"Returns the host gimp version.",
|
|
"This procedure returns the version number of the currently running gimp.",
|
|
"Manish Singh",
|
|
"Manish Singh",
|
|
"1999",
|
|
PDB_INTERNAL,
|
|
0,
|
|
NULL,
|
|
1,
|
|
version_outargs,
|
|
{ { version_invoker } }
|
|
};
|