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

« back to all changes in this revision

Viewing changes to vector/v.external.out/local_proto.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:
 
1
#ifndef V_EXTERNAL_OUT_LOCAL_PROTO_H
 
2
#define V_EXTERNAL_OUT_LOCAL_PROTO_H
 
3
 
 
4
struct _options {
 
5
    struct Option *dsn, *format, *opts, *input, *output;
 
6
};
 
7
 
 
8
struct _flags {
 
9
    struct Flag *f, *p, *r, *g;
 
10
};
 
11
 
 
12
/* args.c */
 
13
void parse_args(int, char **,
 
14
                struct _options *, struct _flags*);
 
15
 
 
16
/* format.c */
 
17
int check_format(char *);
 
18
int is_ogr(const char *);
 
19
 
 
20
/* link.c */
 
21
void make_link(const char *,
 
22
               const char *, char *, char **);
 
23
 
 
24
/* list.c */
 
25
char *format_options(void);
 
26
void list_formats(void);
 
27
 
 
28
/* status.c */
 
29
void print_status(int);
 
30
int save_status_file(const struct Option *);
 
31
int read_status_file(const struct Option *);
 
32
 
 
33
#endif