19 lines
552 B
C
19 lines
552 B
C
|
/* ************************************************************************
|
||
|
|
||
|
help.h
|
||
|
|
||
|
By: Tom Adams
|
||
|
NOAA/NWS/Office of Hydrology/HRL
|
||
|
Date: 07/01/92
|
||
|
Purpose: Global declarations for a Popup help system
|
||
|
|
||
|
************************************************************************ */
|
||
|
|
||
|
#ifndef help_h
|
||
|
#define help_h
|
||
|
|
||
|
Widget create_applicationShell1(); /* This creates the PopupShell & entire interface... */
|
||
|
void popup_help_window(); /* Callback function to popup help window... */
|
||
|
|
||
|
#endif
|