awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/xwpcmn.h
Brad Gonzales 2a3bf4ec32 Issue #628 committing PGEN code received from Plummer on 4-19-2012.
Former-commit-id: fda897d2d0 [formerly 253e8bc948] [formerly 295cbf95e5 [formerly 0816cd253c86acc699cb90866131619c4679f631]]
Former-commit-id: 295cbf95e5
Former-commit-id: ae3d17c698
2012-05-10 16:50:45 -05:00

50 lines
973 B
C
Executable file

/************************************************************************
* XWPCMN.H *
* *
* This header file declares the variables used in the XWP device *
* device driver. *
* *
** *
* Log: *
* T. Piper/GSC 03/01 Created *
***********************************************************************/
#ifndef XWPCMN_H
#define XWPCMN_H
#ifdef XWPCMN_GLOBAL
float txszx, txszy;
/* Text font size in the
X and Y directions */
int kctype;
/* Color scheme type
0 = Monochrome
1 = Grayscale
2 = Color */
int kunit;
/* Type of output (Used for XW)
1 = GEMPAK
2 = MOTIF */
int kjust;
/* Text justification */
float tsfill;
int kfillt;
/* Fill size and type */
#else
extern float txszx;
extern float txszy;
extern int kctype;
extern int kunit;
extern int kjust;
extern float tsfill;
extern int kfillt;
#endif
#endif