home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / startapp.zip / HELP.RC < prev    next >
Text File  |  1998-09-10  |  3KB  |  74 lines

  1. /**************************************************************************
  2.  *  File name  :  help.rc
  3.  *
  4.  *  Description:  This resource file contains the Help table and subtable
  5.  *                resources used by the help manager.
  6.  *
  7.  *  Concepts   :  resource script
  8.  *
  9.  *  API's      :  [none]
  10.  *
  11.  *  Required
  12.  *    Files    :  OS2.H, MAIN.H, HELP.H, DLG.H
  13.  *
  14.  *  (c) Copyright IBM Corp. 1991, 1998  All rights reserved.
  15.  *
  16.  *  These sample programs are owned by International Business Machines
  17.  *  Corporation or one of its subsidiaries ("IBM") and are copyrighted and
  18.  *  licensed, not sold.
  19.  *
  20.  *  You may copy, modify, and distribute these sample programs in any
  21.  *  form without payment to IBM, for any purpose including developing,
  22.  *  using, marketing or distributing programs that include or are
  23.  *  derivative works of the sample programs.
  24.  *
  25.  *  The sample programs are provided to you on an "AS IS" basis, without
  26.  *  warranty of any kind.  IBM HEREBY EXPRESSLY DISCLAIMS ALL WARRANTIES,
  27.  *  EITHER EXPRESS OR IMPLIED, INCLUDING , BUT NOT LIMITED TO, THE IMPLIED
  28.  *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  29.  *  Some jurisdictions do not allow for the exclusion or limitation of
  30.  *  implied warranties, so the above limitations or exclusions may not
  31.  *  apply to you.  IBM shall not be liable for any damages you suffer
  32.  *  as a result of using, modifying or distributing the sample programs
  33.  *  or their derivatives.
  34.  *************************************************************************/
  35.  
  36. #include <os2.h>
  37. #include "main.h"
  38. #include "help.h"
  39. #include "dlg.h"
  40.  
  41. /*
  42.  *  Help table definition
  43.  */
  44. HELPTABLE   TEMPLATE_HELP_TABLE
  45. {
  46.     HELPITEM    IDR_MAIN,       SUBTABLE_MAIN,         PANEL_MAIN
  47.     HELPITEM    IDD_PRODUCTINFO, SUBTABLE_PRODUCTINFODLG, PANEL_PRODUCTINFODLG
  48. }
  49.  
  50.  
  51. /*
  52.  *  Main window subtable, includes menu item help
  53.  */
  54. HELPSUBTABLE SUBTABLE_MAIN
  55. SUBITEMSIZE     2
  56. {
  57.     HELPSUBITEM     IDM_HELP,                   PANEL_HELP
  58.     HELPSUBITEM     IDM_HELPINDEX,              PANEL_HELPINDEX
  59.     HELPSUBITEM     IDM_HELPGENERAL,            PANEL_HELPGENERAL
  60.     HELPSUBITEM     IDM_HELPUSINGHELP,          PANEL_HELPUSINGHELP
  61.     HELPSUBITEM     IDM_HELPTUTORIAL,           PANEL_HELPTUTORIAL
  62.     HELPSUBITEM     IDM_HELPPRODUCTINFO,        PANEL_HELPPRODUCTINFO
  63. }
  64.  
  65. /*
  66.  *  Enter text dialog help subtable
  67.  */
  68. HELPSUBTABLE SUBTABLE_PRODUCTINFODLG
  69. SUBITEMSIZE     2
  70. {
  71.     HELPSUBITEM     IDC_OK,             PANEL_PRODUCTINFO_OK
  72. }
  73. /***************************  End of help.rc ****************************/
  74.