home *** CD-ROM | disk | FTP | other *** search
- /* HelpTopic - March 26th, 2001
- **
- ** Copyright (c) 1997-2001 by Gregory Braun. All rights reserved.
- **
- ** This function invokes the WinHelp handler with the Help Topic
- ** ID specified.
- **
- ** Called: w = window handle of the parent (owner)
- ** id = topic ID for this help topic.
- **
- ** Returns: TRUE upon success, or FALSE if an error exists.
- */
-
- #include "AppPaths.h"
-
- extern BOOL far HelpTopic (HWND w,DWORD id)
- {
- if (!*helpfile)
- return (Beeper ());
-
- return (WinHelp (w,helpfile,HELP_CONTEXT,id));
- }
-
- /* end of HelpTop.c - written by Gregory Braun */
-