~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpbase/gimpparam.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20070502163303-6wchheivjxgjtlna
Tags: upstream-2.3.16
ImportĀ upstreamĀ versionĀ 2.3.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* LIBGIMP - The GIMP Library
 
2
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __GIMP_PARAM_H__
 
21
#define __GIMP_PARAM_H__
 
22
 
 
23
/* For information look into the C source or the html documentation */
 
24
 
 
25
 
 
26
#define GIMP_PARAM_STATIC_STRINGS (G_PARAM_STATIC_NAME | \
 
27
                                   G_PARAM_STATIC_NICK | \
 
28
                                   G_PARAM_STATIC_BLURB)
 
29
#define GIMP_PARAM_READABLE       (G_PARAM_READABLE    | \
 
30
                                   GIMP_PARAM_STATIC_STRINGS)
 
31
#define GIMP_PARAM_WRITABLE       (G_PARAM_WRITABLE    | \
 
32
                                   GIMP_PARAM_STATIC_STRINGS)
 
33
#define GIMP_PARAM_READWRITE      (G_PARAM_READWRITE   | \
 
34
                                   GIMP_PARAM_STATIC_STRINGS)
 
35
 
 
36
 
 
37
#endif  /*  __GIMP_PARAM_H__  */