~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to raster/r.colors/local_proto.h

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define __LOCAL_PROTO_H__
22
22
 
23
23
#include <grass/gis.h>
 
24
#include <grass/raster.h>
 
25
#include <grass/glocale.h>
 
26
#include <grass/raster3d.h>
 
27
 
 
28
struct maps_info {
 
29
        int num;
 
30
        char **names;
 
31
        char **mapsets;
 
32
        int *map_types;
 
33
        DCELL *min;
 
34
        DCELL *max;
 
35
 
 
36
};
 
37
 
 
38
#define RASTER_TYPE   1
 
39
#define RASTER3D_TYPE 2
24
40
 
25
41
/* stats.c */
26
 
int get_stats(const char *, const char *, struct Cell_stats *);
27
 
void get_fp_stats(const char *name, const char *mapset,
28
 
                  struct FP_stats *statf,
29
 
                  DCELL min, DCELL max, int geometric, int geom_abs);
 
42
int get_stats(struct maps_info *, struct Cell_stats *);
 
43
void get_fp_stats(struct maps_info *, struct FP_stats *statf,
 
44
                  DCELL min, DCELL max, int geometric, int geom_abs, int);
30
45
 
31
 
/* main.c */
32
 
int main(int, char *[]);
 
46
/* edit_colors.c */
 
47
int edit_colors(int, char **, int, const char *, const char*);
33
48
 
34
49
/* rules.c */
35
50
int read_color_rules(FILE *, struct Colors *, DCELL, DCELL, int);