awips2/nativeLib/rary.ohd.pproc/inc/ifp_help.h
root 06a8b51d6d Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

38 lines
960 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 /* #ifndef IFP_HELP_H */