Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
650 B

//----------------------------------------------------------------------------
//
// Help support.
//
// Copyright (C) Microsoft Corporation, 2000-2001.
//
//----------------------------------------------------------------------------
#ifndef _DHHELP_H_
#define _DHHELP_H_
#include <dhtopics.h>
#define HELP_TOPIC_TABLE_OF_CONTENTS 1
enum
{
HELP_SUCCESS,
HELP_NO_SUCH_PAGE,
HELP_FAILURE
};
extern CHAR g_HelpFileName[];
void MakeHelpFileName(PSTR File);
ULONG OpenHelpTopic(ULONG PageConstant);
ULONG OpenHelpIndex(PCSTR IndexText);
ULONG OpenHelpSearch(PCSTR SearchText);
BOOL SpawnHelp(ULONG Topic);
#endif // #ifndef _DHHELP_H_