GRASS 8 Programmer's Manual 8.6.0dev(2026)-1d1e47ad9d
Loading...
Searching...
No Matches
manage.h
Go to the documentation of this file.
1#ifndef GRASS_MANAGE_H
2#define GRASS_MANAGE_H
3
4struct list {
5 const char **element; /* list of related elements */
6 char *alias; /* element alias */
7 const char **desc; /* description of elements */
8 char *text; /* menu text */
9 int nelem; /* number of elements */
10 char status;
11 char *mainelem; /* main element */
12 char *maindesc; /* main element description */
13};
14
15#define REMOVE 1
16#define RENAME 2
17#define COPY 3
18#define LIST 4
19
20#include <grass/gis.h>
21
22#include <grass/defs/manage.h>
23
24#endif
Definition manage.h:4
const char ** desc
Definition manage.h:7
char status
Definition manage.h:10
char * maindesc
Definition manage.h:12
char * mainelem
Definition manage.h:11
int nelem
Definition manage.h:9
const char ** element
Definition manage.h:5
char * alias
Definition manage.h:6
char * text
Definition manage.h:8