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

  1. /*----------------------------------------------------------------------+
  2. |                                    |
  3. |  Copyright (1995) 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/mdlshare/mdlshcmd.r_v  $
  18. |   $Workfile:   mdlshcmd.r  $
  19. |   $Revision:   6.1  $
  20. |       $Date:   28 Jun 1995 14:41:54  $
  21. |                                    |
  22. +----------------------------------------------------------------------*/
  23. /*----------------------------------------------------------------------+
  24. |                                    |
  25. |   Function -                                |
  26. |                                    |
  27. |       MDL Shared Library Example Application:                    |
  28. |        Shared library command resources                    |
  29. |                                    |
  30. +----------------------------------------------------------------------*/
  31. #include <rscdefs.h>
  32. #include <cmdclass.h>
  33.  
  34. #define    CT_NONE        0
  35. #define    CT_MAIN        1
  36. #define    CT_MDLSHARE 2
  37. #define    CT_SET        3
  38.  
  39. Table    CT_MAIN =
  40. {
  41.     { 1,    CT_MDLSHARE,    INPUT,      REQ,    "MDLSHARE" },
  42. };
  43.  
  44. Table    CT_MDLSHARE =
  45. {
  46.     { 1,    CT_NONE,        INHERIT,    NONE,    "PASSWORD" },
  47.     { 2,    CT_SET,        INHERIT,    NONE,    "SET" },
  48. };
  49.  
  50. Table    CT_SET =
  51. {
  52.     { 1,    CT_NONE,        INHERIT,    NONE,    "PASSWORD" },
  53. };
  54.