~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to raster3d/r3.in.v5d/v5d.h

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef V5D_H
27
27
#define V5D_H
28
28
 
 
29
#include <sys/types.h>
29
30
 
30
31
/*
31
32
 * A numeric version number which we can test for in utility programs which
232
233
    unsigned int FileFormat;    /* COMP5D file version or 0 if .v5d */
233
234
    int FileDesc;               /* Unix file descriptor */
234
235
    char Mode;                  /* 'r' = read, 'w' = write */
235
 
    int CurPos;                 /* current position of file pointer */
236
 
    int FirstGridPos;           /* position of first grid in file */
237
 
    int GridSize[MAXVARS];      /* size of each grid */
238
 
    int SumGridSizes;           /* sum of GridSize[0..NumVars-1] */
 
236
    off_t CurPos;                       /* current position of file pointer */
 
237
    off_t FirstGridPos;         /* position of first grid in file */
 
238
    off_t GridSize[MAXVARS];    /* size of each grid */
 
239
    off_t SumGridSizes;         /* sum of GridSize[0..NumVars-1] */
239
240
} v5dstruct;
240
241
 
241
242