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

  1. #pragma suppressREQCmds
  2. /*----------------------------------------------------------------------+
  3. |                                    |
  4. |  Copyright (1985-95) Bentley Systems, Inc., All rights reserved.    |
  5. |                                    |
  6. |  "MicroStation" is a registered trademark and "MDL" and "MicroCSL"    |
  7. |  are trademarks of Bentley Systems, Inc.                    |
  8. |                                    |
  9. |  Limited permission is hereby granted to reproduce and modify this    |
  10. |  copyrighted material provided that the resulting code is used only     |
  11. |  in conjunction with Bentley Systems products under the terms of the    |
  12. |  license agreement provided therein, and that this notice is retained    |
  13. |  in its entirety in any such reproduction or modification.        |
  14. |                                    |
  15. +----------------------------------------------------------------------*/
  16. /*----------------------------------------------------------------------+
  17. |                                    |
  18. |   $Logfile:   J:/mdl/examples/plaimage/pimgcmd.r_v  $
  19. |   $Workfile:   pimgcmd.r  $
  20. |   $Revision:   1.0  $
  21. |       $Date:   28 Jun 1995 13:04:12  $
  22. |                                    |
  23. +----------------------------------------------------------------------*/
  24.  
  25. /* Command Table Numbers. */
  26. #define CT_NONE            0
  27. #define    CT_MAIN         1
  28. #define CT_PLACE        2    
  29. #define CT_PLACEImage        3
  30.  
  31. /* Version 100 */
  32. #include <rscdefs.h>
  33. #include <cmdclass.h>
  34.  
  35. /*----------------------------------------------------------------------+
  36. |                                    |
  37. |   Main Commands                            |
  38. |                                    |
  39. +----------------------------------------------------------------------*/
  40. Table    CT_MAIN =
  41. {
  42.     {  1, CT_PLACE,        PLACEMENT,    NONE,        "PLACE" },
  43. }; /* Endtable main */
  44.  
  45. /*----------------------------------------------------------------------+
  46. |                                    |
  47. |   Place Commands                            |
  48. |                                    |
  49. +----------------------------------------------------------------------*/
  50. Table    CT_PLACE =
  51. {
  52.     {  1, CT_NONE,      INHERIT,     NONE,         "IMAGE" },
  53. };
  54.  
  55.