awips2/nativeLib/rary.ohd.ifp/inc/ifp_help.h
root 3360eb6c5f Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 9f19e3f712 [formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]
Former-commit-id: 06a8b51d6d
2012-01-06 08:55:05 -06:00

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