awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/cvgdef.h
Steve Harris 7f90924706 12.4.1-10 baseline
Former-commit-id: 7fa9dbd5fb [formerly 4bfbdad17d] [formerly 9f8cb727a5] [formerly 7fa9dbd5fb [formerly 4bfbdad17d] [formerly 9f8cb727a5] [formerly 8485b90ff8 [formerly 9f8cb727a5 [formerly bf53d06834caa780226121334ac1bcf0534c3f16]]]]
Former-commit-id: 8485b90ff8
Former-commit-id: 40aa780b3d [formerly 33a67cdd82] [formerly 73930fb29d0c1e91204e76e6ebfdbe757414f319 [formerly a28d70b5c5]]
Former-commit-id: a16a1b4dd44fc344ee709abbe262aeed58a8339b [formerly e5543a0e86]
Former-commit-id: 0c25458510
2012-05-01 18:06:13 -05:00

38 lines
1.1 KiB
C

/************************************************************************
* cvgdef *
* *
* This header file contains the declaration and structures for *
* the group number transformation index used by cvg_ggmtrx. *
* *
** *
* Log: *
* E. Safford/SAIC 04/02 Initial coding *
* E. Safford/SAIC 04/02 correct cvg_gmtrx & cvg_gfrmtrx names *
***********************************************************************/
#ifndef CVGDEF_H
#define CVGDEF_H
typedef struct cvg_mtrx
{
char grptyp;
int *grpin;
int *grpout;
int numgrps;
} CVG_mtrx_t;
/*
* cvg prototypes using these defined structs
*/
void cvg_gmtrx ( char *fname,
int *numtyps,
CVG_mtrx_t **matrix,
int *iret );
void cvg_gfrmtrx ( CVG_mtrx_t *matrix,
int *size );
#endif