Former-commit-id:9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f] Former-commit-id:06a8b51d6d
29 lines
768 B
C
29 lines
768 B
C
/****************************************************************/
|
|
/* */
|
|
/* FILE: Mods_globalPrefs.h */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* Coded by: Donna Page */
|
|
/* NWS * Office of Hydrology * HRL */
|
|
/* Date: 10/09/95 */
|
|
/* Modified: */
|
|
/* */
|
|
/****************************************************************/
|
|
|
|
#ifndef Mod_globalPrefs_h
|
|
#define Mod_globalPrefs_h
|
|
|
|
/*--------------------------------------------------------------*/
|
|
/* Structure to hold Mods global preferences read from the */
|
|
/* Mods_globalPrefs file */
|
|
/*--------------------------------------------------------------*/
|
|
|
|
/* Definition */
|
|
typedef struct
|
|
{
|
|
int ofs_mods_editable;
|
|
} Mod_globalPrefs_t;
|
|
|
|
#endif
|
|
|