awips2/ncep/gov.noaa.nws.ncep.ui.nsharp/AwcNsharp/nwxcmn.h
Steve Harris 676ea3192f 12.5.1-15 baseline
Former-commit-id: b13cbb7e00 [formerly 4909e0dd166e43c22a34d96aa744f51db8a7d6c0]
Former-commit-id: 3904c4ccf5
2012-06-08 13:39:48 -05:00

42 lines
825 B
C

/************************************************************************
* nwxcmn.h *
* *
* This header file declares and defines structures, variables and *
* macros for use in the NWX program. *
* *
** *
* Log: *
* S. Jacobs/NMC 7/94 *
* C. Lin/EAI 8/95 *
***********************************************************************/
#define MAXARRY 90
#define MAXCOLR 3
struct date_time_info {
int year;
int month;
int day;
int hour;
int minute;
};
struct srch_strng_info {
char search_string[49];
char start_of_text[2][9];
char end_of_text[2][9];
};
struct data_file_info {
FILE *fptr;
char filnam[133];
int file_len;
};
struct directory_info {
char dirpath[73];
int nent;
int cfilnum;
char filnam[NFILES][73];
};