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

34 lines
1.1 KiB
C

/* ******************************************************************************************************
File: online_help.h
Purpose: Include file for online_help.c; provides online help through a Motif PushButton Callback...
a help window "pops-up", allowing the user to select help from a list of help topics.
Coded by: Tom Adams
Affiliation: NOAA/NWS/Office of Hydrology/HRL
Date: 05/07/92
Last changed: 05/07/92
****************************************************************************************************** */
#ifndef online_help_h
#define online_help_h
#define MAX_PATHNAME_LENGTH 100
XmString *xmstr_helpItems;
extern char *help_names_file;
extern char *help_directory; /* Set the path to where you want the help files to */
/* reside so that they will be accessible by all... */
void read_help_names();
void parse_help_names();
char *get_help_text();
void make_xmstr_listItem_array();
char *GetSource();
#endif