home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c050 / 5.ddi / SHARE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  439 b   |  22 lines

  1. /*     share.h
  2.  
  3.     File sharing mode for use with sopen.
  4.     See DOS function 3Dh for definition.
  5.  
  6.     Copyright (c) Borland International 1987,1988
  7.     All Rights Reserved.
  8. */
  9. #if __STDC__
  10. #define _Cdecl
  11. #else
  12. #define _Cdecl    cdecl
  13. #endif
  14.  
  15. #define SH_COMPAT    0x0000
  16. #define SH_DENYRW    0x0010
  17. #define SH_DENYWR    0x0020
  18. #define SH_DENYRD    0x0030
  19. #define SH_DENYNONE    0x0040
  20.  
  21. #define SH_DENYNO    SH_DENYNONE    /* MS documentation uses both */
  22.