home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / SHARE.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  735b  |  34 lines

  1. /*  share.h
  2.  
  3.     File sharing mode for use with sopen.
  4.     See DOS function 3Dh for definition.
  5.  
  6. */
  7.  
  8. /*
  9.  *      C/C++ Run Time Library - Version 8.0
  10.  *
  11.  *      Copyright (c) 1987, 1997 by Borland International
  12.  *      All Rights Reserved.
  13.  *
  14.  */
  15. /* $Revision:   8.1  $ */
  16.  
  17. #if !defined( __SHARE_H )
  18. #define __SHARE_H
  19.  
  20. #if !defined( ___DEFS_H )
  21. #include <_defs.h>
  22. #endif
  23.  
  24. #define SH_COMPAT      0x00    /* compatibility mode */
  25. #define SH_DENYRW      0x10    /* deny read/write mode */
  26. #define SH_DENYWR      0x20    /* deny write mode */
  27. #define SH_DENYRD      0x30    /* deny read mode */
  28. #define SH_DENYNO      0x40    /* deny none mode */
  29.  
  30. #define SH_DENYNONE    SH_DENYNO
  31.  
  32. #endif  /* __SHARE_H */
  33.  
  34.