~ubuntu-branches/ubuntu/karmic/grass/karmic

« back to all changes in this revision

Viewing changes to general/g.mapsets/externs.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2009-07-13 13:34:03 UTC
  • mfrom: (3.1.15 karmic)
  • Revision ID: james.westby@ubuntu.com-20090713133403-0x81m7hb1q06zu13
Tags: 6.4.0~rc5-2
* Added a grass menu item (Hamish).
* Added a grass.menu.in template with related icon.
* Added a simple x-grass wrapper to allow running grass without a pre-running
  controlling terminal. At least it works within ordinary WMs launchers.
  (closes: #503371)
* Added newlocation.dpatch patch to manage correctly new locations.
  (closes: #533738)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifdef MAIN
2
 
char *mapset_name[GMAPSET_MAX];
3
 
int nmapsets;
4
 
int choice[GMAPSET_MAX];
5
 
int nchoices;
6
 
int curr_mapset[GMAPSET_MAX];
7
 
int ncurr_mapsets;
8
 
#else
9
 
extern char *mapset_name[];
10
 
extern int nmapsets;
11
 
extern int choice[];
12
 
extern int nchoices;
13
 
extern int curr_mapset[];
14
 
extern int ncurr_mapsets;
15
 
#endif
16
 
 
17
 
#define REPLACE 0
18
 
#define ADD     1
19
 
#define DELETE  2