~ubuntu-branches/ubuntu/precise/grass/precise

« back to all changes in this revision

Viewing changes to imagery/i.ortho.photo/photo.init/globals.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-04-13 17:08:41 UTC
  • mfrom: (8.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110413170841-ss1t9bic0d0uq0gz
Tags: 6.4.1-1
* New upstream version.
* Now build-dep on libjpeg-dev and current libreadline6-dev.
* Removed patch swig: obsolete.
* Policy bumped to 3.9.2, without changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifdef MAIN
2
 
#define GLOBAL
3
 
#else
4
 
#define GLOBAL extern
5
 
#endif
6
 
 
7
 
#include "orthophoto.h"
8
 
 
9
 
/* State flags  Most are Toggles */
10
 
GLOBAL char Data_Loaded;        /* is there data in memory */
11
 
 
12
 
                                /* used for abnormal exit logic */
13
 
GLOBAL char Files_Open;         /* is there data in memory */
14
 
 
15
 
GLOBAL struct Ortho_Image_Group group;
16
 
 
17
 
/* hold the names of files etc.  mostly used by main.c */
18
 
GLOBAL char *N_path;
19
 
GLOBAL char *N_name;
20
 
GLOBAL char *N_camera;
21
 
 
22
 
#define DEG_TO_RADS 0.01745329
23
 
#define RAD_TO_DEGS 57.29578
24
 
 
25
 
/* mod_info.c */
26
 
int mod_init_info(int, struct Ortho_Camera_Exp_Init *);