/* help.h */ /***************************************************************************/ #ifndef HELP_H #define HELP_H #include "incwin.h" #ifdef __cplusplus extern "C" { #endif typedef struct { int id; char *keyword; } tHelpTable; int DoHelpOnFocus(HWND hWnd,const char *HelpFile,tHelpTable *HelpTable); int DoHelpOnFocusID(HWND hWnd,const char *HelpFile); #ifdef __cplusplus } #endif #endif /* HELP_H */