home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 February
/
Chip_2002-02_cd1.bin
/
sharewar
/
apaths
/
APSOURCE.ZIP
/
HelpTop.c
< prev
next >
Wrap
C/C++ Source or Header
|
2001-03-26
|
641b
|
25 lines
/* 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 */