40 lines
1 KiB
C
40 lines
1 KiB
C
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1996-1997 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// HelpData.h
|
|
//
|
|
// Abstract:
|
|
// Definitions for data required for implementing help.
|
|
//
|
|
// Author:
|
|
// David Potter (davidp) February 19, 1997
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _HELPDATA_H_
|
|
#define _HELPDATA_H_
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Include Files
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _DLGHELP_H_
|
|
#include "DlgHelp.h" // for CMapCtrlToHelpID
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Global Variables
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
extern const CMapCtrlToHelpID g_rghelpmapIISParameters[];
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // _HELPDATA_H_
|