awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/usrtbl.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

31 lines
982 B
C
Executable file

/************************************************************************
* usrtbl.h *
* *
* This file contains structure definitions used by GEMPAK to store *
* user settings retrieved from "users.tbl" *
* *
** *
* E. Wehner/EAi 3/97 Created *
***********************************************************************/
#define MAX_USERS 20
#define LEN_USERNAME 20
#define LEN_FNAME 100
/*
* Users info - Information for each user that can be accessed through
* product generation.
*/
typedef struct user_data
{
int user_id;
char user_text[LEN_USERNAME];
char user_fname[LEN_FNAME];
char user_pallette[LEN_USERNAME];
} user_t[MAX_USERS], sglusr_t;