32 lines
807 B
C
32 lines
807 B
C
/*=========================================================================
|
|
*
|
|
* Help.h - link the HLP file with the application
|
|
*
|
|
* Version 1.0
|
|
* Revision date
|
|
*
|
|
*=======================================================================*/
|
|
#ifndef __HELP_H__
|
|
#define __HELP_H__
|
|
|
|
|
|
//--- Defines --------------------------------------------------------
|
|
|
|
|
|
// Help file name
|
|
#define C_szCxtHelpFile "M23D_Cxt.hlp"
|
|
#define C_szMainHelpFile "M23D.hlp"
|
|
|
|
|
|
// topic IDs for main panels
|
|
#define ID_USAGE_PATHS 320
|
|
#define ID_USAGE_SELECTION 350
|
|
#define ID_USAGE_CONVERSION 370
|
|
|
|
// define IDs for config panels
|
|
#define HID_MAINPANEL 0x80660418
|
|
#define HID_PANELCONFIGS 0x80660419
|
|
#define HID_RICHEDIT_RESULT 0x80660836
|
|
#define HID_RICHEDIT_COMMAND 0x8066083b
|
|
#endif __HELP_H__
|