Former-commit-id:7fa9dbd5fb
[formerly4bfbdad17d
] [formerly9f8cb727a5
] [formerly8485b90ff8
[formerly9f8cb727a5
[formerly bf53d06834caa780226121334ac1bcf0534c3f16]]] Former-commit-id:8485b90ff8
Former-commit-id: 73930fb29d0c1e91204e76e6ebfdbe757414f319 [formerlya28d70b5c5
] Former-commit-id:33a67cdd82
50 lines
973 B
C
50 lines
973 B
C
/************************************************************************
|
|
* 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
|