awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/vgftbl.h
Steve Harris 8485b90ff8 12.4.1-10 baseline
Former-commit-id: bf53d06834caa780226121334ac1bcf0534c3f16
2012-05-01 18:06:13 -05:00

40 lines
1.1 KiB
C

/************************************************************************
* vgftbl.h *
* *
* This header file defines the VGF user table structures. *
* *
** *
* Log: *
* C. Lin/EAI 05/97 *
* S. Law/GSC 3/00 Removed usrnam from the data structure *
* S. Jacobs/NCEP 3/00 Renamed *
***********************************************************************/
/*
* VGF user info data struct
*/
typedef struct {
char *title; /* title name */
char *usrpath; /* full path to this user's VGF dir */
} vgfusr_ent_t;
/*
* VGF user info table struct
*/
typedef struct {
int nitems; /* total # of users*/
vgfusr_ent_t *items; /* pointer to the array of user items */
} vgfutbl_t;
#ifdef VGFTBL_GLOBAL
vgfutbl_t _vgfUsrTbl;
#else
extern vgfutbl_t _vgfUsrTbl;
#endif
void vtbl_readUsrTbl ( char *tblname,
int *iret );