home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk23 / dir02 / f014070.re_ / f014070.re
Text File  |  1996-04-02  |  2KB  |  64 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/dlink/mdliolib.h_v  $
  18. |   $Workfile:   mdliolib.h  $
  19. |   $Revision:   1.6  $
  20. |       $Date:   16 Jun 1995 16:49:52  $
  21. |                                    |
  22. +----------------------------------------------------------------------*/
  23. /*----------------------------------------------------------------------+
  24. |                                    |
  25. |                                    |
  26. |    This header file contains definitions needed by MDL programs    |
  27. |    that use the fileio DLM.                    |
  28. |                                    |
  29. +----------------------------------------------------------------------*/
  30. #ifndef __mdliolibH__
  31. #define __mdliolibH__
  32.  
  33. /*----------------------------------------------------------------------+
  34. |                                    |
  35. |   Header File Dependencies                        |
  36. |                                    |
  37. +----------------------------------------------------------------------*/
  38.  
  39. #if !defined (__basedefsH__)
  40. #include "basedefs.h"
  41. #endif
  42.  
  43. /*----------------------------------------------------------------------+
  44. |                                    |
  45. |   Defines                                |
  46. |                                    |
  47. +----------------------------------------------------------------------*/
  48.  
  49. #if defined (hp700) || defined (clipper) || defined (pm386) || \
  50.     defined (sparc) || defined (sgimips) || defined (winNT) || defined (rs6000) || \
  51.     defined (macintosh)
  52. #define O_RDONLY        0
  53. #else
  54. #error O_RDONLY is not defined for this platform
  55. #endif
  56.  
  57. /*----------------------------------------------------------------------+
  58. |                                    |
  59. |   Typedefs                                |
  60. |                                    |
  61. +----------------------------------------------------------------------*/
  62.  
  63. #endif
  64.