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

  1. /*----------------------------------------------------------------------+
  2. |                                    |
  3. |  Copyright (1993-95) Bentley Systems, Inc., All rights reserved.    |
  4. |                                    |
  5. |  "MicroStation" is a registered trademark and "MDL" and "MicroCSL"    |
  6. |  are trademarks of 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     |
  10. |  in 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. |   $Logfile:   J:/mdl/examples/scrnsize/scrncmd.r_v  $
  18. |   $Workfile:   scrncmd.r  $
  19. |   $Revision:   1.0  $
  20. |       $Date:   28 Jun 1995 14:38:30  $
  21. |                                    |
  22. +----------------------------------------------------------------------*/
  23. /*----------------------------------------------------------------------+
  24. |                                    |
  25. |   Function -    Command Table Resources                    |
  26. |                                                                       |
  27. +----------------------------------------------------------------------*/
  28. /*----------------------------------------------------------------------+
  29. |                                    |
  30. |   Include Files                               |
  31. |                                    |
  32. +----------------------------------------------------------------------*/
  33. #include <rscdefs.h>
  34. #include <cmdclass.h>
  35.  
  36. /*----------------------------------------------------------------------+
  37. |                                    |
  38. |   Local Defines                            |
  39. |                                    |
  40. +----------------------------------------------------------------------*/
  41. #define    CT_NONE         0
  42. #define CT_MODAL     1
  43. #define CT_MSG         2
  44.  
  45. /*----------------------------------------------------------------------+
  46. |                                                                       |
  47. |   Application command syntax                        |
  48. |                                                                       |
  49. +----------------------------------------------------------------------*/
  50. Table    CT_MODAL =
  51. {
  52.     {  1, CT_MSG,     INPUT,         REQ,        "OPENMODAL" },
  53. };
  54.  
  55. Table    CT_MSG =
  56. {
  57.     {  1, CT_NONE,     INPUT,         NONE,        "DEF" },
  58.     {  2, CT_NONE,     INPUT,         NONE,        "SET" },
  59. };
  60.