Former-commit-id:06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:9f19e3f712
Former-commit-id:a02aeb236c
38 lines
935 B
C
38 lines
935 B
C
|
|
/* ********************************************************************************************
|
|
|
|
ifp_help.h
|
|
Data structures, etc., needed for online help Dialogs
|
|
|
|
|
|
Coded by: Tom Adams
|
|
Affiliation: NOAA/NWS/Office of Hydrology/Hydrologic Research Laboratory
|
|
|
|
Initially coded: 05/14/91
|
|
Last modified: 06/15/92
|
|
|
|
|
|
******************************************************************************************** */
|
|
|
|
#ifndef ifp_help_h
|
|
#define ifp_help_h
|
|
|
|
int IsContextHelpWindowDown;
|
|
|
|
/* Data structure passed by Callback functions for 'Help' buttons... */
|
|
typedef struct _help_struct
|
|
{
|
|
char *message_widget_name;
|
|
Widget parent;
|
|
} help_struct;
|
|
|
|
|
|
|
|
/* Data structure passed by Event handlers of widgets... */
|
|
typedef struct
|
|
{
|
|
Widget top_help_shell;
|
|
char *widget_name;
|
|
} help_cb_struct;
|
|
|
|
#endif
|