home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk23 / dir05 / f013030.re_ / f013030.re
Text File  |  1996-04-02  |  2KB  |  56 lines

  1. /*----------------------------------------------------------------------+
  2. |                                    |
  3. | Copyright (1995) Bentley Systems, Inc., All rights reserved.        |
  4. |                                    |
  5. | "AccuDraw", "MicroStation", "MDL", and "MicroCSL" are trademarks of    |
  6. |  Bentley Systems, Inc.                             |
  7. |                                    |
  8. | Limited permission is hereby granted to reproduce and modify this    |
  9. | copyrighted material provided that the resulting code is used only in |
  10. | conjunction with Bentley Systems products under the terms of the    |
  11. | license agreement provided therein, and that this notice is retained    |
  12. | in its entirety in any such reproduction or modification.        |
  13. |                                    |
  14. +----------------------------------------------------------------------*/
  15. /*----------------------------------------------------------------------+
  16. |                                    |
  17. |    Include Files                            |
  18. |                                    |
  19. +----------------------------------------------------------------------*/
  20. #pragma        suppressREQCmds
  21.  
  22. #include     <rscdefs.h>
  23. #include     <cmdclass.h>
  24.  
  25. #include    "adrwdemo.h"
  26.  
  27. /*----------------------------------------------------------------------+
  28. |                                    |
  29. |   Immediate Defines                            |
  30. |                                    |
  31. +----------------------------------------------------------------------*/
  32. #define CT_NONE             0
  33. #define CT_MAIN             1
  34. #define CT_DEMO                2
  35.  
  36. /*----------------------------------------------------------------------+
  37. |                                    |
  38. |   Command Tables                            |
  39. |                                    |
  40. +----------------------------------------------------------------------*/
  41. Table    CT_MAIN =
  42. {
  43. { 1, CT_DEMO,     PLACEMENT,        REQ,            "DEMO"    }
  44. };
  45.  
  46. Table CT_DEMO =
  47. {
  48.  { 1, CT_NONE,        INHERIT, NONE|CMDSTR(MSG_cmdLine),      "LINE"      },
  49.  { 2, CT_NONE,        INHERIT, NONE|CMDSTR(MSG_cmdCircle),    "CIRCLE"    },
  50.  { 3, CT_NONE,        INHERIT, NONE|CMDSTR(MSG_cmdRect),      "RECTANGLE" },
  51.  { 4, CT_NONE,        INHERIT, NONE|CMDSTR(MSG_cmdRect2),     "RECTANGLE2"},
  52.  { 5, CT_NONE,        INHERIT, NONE|CMDSTR(MSG_cmdChange),    "CHANGE"    },
  53. };
  54.  
  55.  
  56.