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

« back to all changes in this revision

Viewing changes to plug-ins/pygimp/pygimp.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-08-22 11:50:05 UTC
  • mfrom: (0.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20080822115005-yxj5svf3v9x1mkr7
Tags: upstream-2.4.7
ImportĀ upstreamĀ versionĀ 2.4.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#define _INSIDE_PYGIMP_
28
28
#include "pygimp-api.h"
29
29
 
 
30
#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
 
31
typedef int Py_ssize_t;
 
32
#define PY_SSIZE_T_MAX INT_MAX
 
33
#define PY_SSIZE_T_MIN INT_MIN
 
34
#endif
 
35
 
30
36
G_BEGIN_DECLS
31
37
 
32
38
extern PyObject *pygimp_error;