~ubuntu-branches/ubuntu/intrepid/gimp/intrepid-updates

« back to all changes in this revision

Viewing changes to app/base/tile-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2007-12-18 10:44:11 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20071218104411-p2c1aor6tfqcwkyw
Tags: 2.4.3-1ubuntu1
* Merge from Debian unstable. (LP: #177821)
* Ubuntu remaining changes:
  - 02_help-message.patch, 03_gimp.desktop.in.in.patch: Distro changes.
  - Weave i18n magic in the rules file.
  - Remove the doc directory symlink in the preinst, and replace it with a
    directory.
  - Added NEWS, README and README.Debian to gimp.docs.
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include <sys/types.h>
23
23
 
24
 
#ifdef G_OS_WIN32
25
 
 
26
 
int gimp_win32_large_truncate (int    fd,
27
 
                               gint64 size);
28
 
 
29
 
#define LARGE_SEEK(f, o, w) _lseeki64 (f, o, w)
30
 
#define LARGE_TRUNCATE(f, s) gimp_win32_large_truncate (f, s)
31
 
 
32
 
#else
33
 
 
34
 
#define LARGE_SEEK(f, o, t) lseek (f, o, t)
35
 
#define LARGE_TRUNCATE(f, s) ftruncate (f, s)
36
 
 
37
 
#endif
38
 
 
39
24
typedef struct _TileLink TileLink;
40
25
 
41
26
struct _TileLink