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

38 lines
1.1 KiB
C
Executable file

/************************************************************************
* 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