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

« back to all changes in this revision

Viewing changes to include/icon.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:
1
 
#ifndef GRASS_ICON_H
2
 
#ifndef _STDIO_H
3
 
#include <stdio.h>
4
 
#endif
5
 
#define GRASS_ICON_H
6
 
 
7
 
#define ICON struct _icon
8
 
struct _icon
9
 
{
10
 
    int nrows;
11
 
    int ncols;
12
 
    int xref;
13
 
    int yref;
14
 
    char **map;
15
 
};
16
 
 
17
 
char *ask_icon_any(char *, char *, int);
18
 
char *ask_icon_new(char *, char *);
19
 
char *ask_icon_old(char *, char *);
20
 
int get_icon(char *, char *, ICON *);
21
 
int get_default_icon(ICON *);
22
 
int put_icon(char *, ICON *);
23
 
int read_icon(FILE *, ICON *);
24
 
int release_icon(ICON *);
25
 
int scale_icon(ICON *, ICON *, float);
26
 
int write_icon(FILE *, ICON *, int);
27
 
#endif