home *** CD-ROM | disk | FTP | other *** search
- #ifndef __share_h
- #define __share_h
-
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( none )
- #endif
- #pragma info( restore )
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- /********************************************************************/
- /* <share.h> header file */
- /* */
- /* Licensed Materials - Property of IBM */
- /* */
- /* IBM C Set/2 Beta Version */
- /* Copyright (C) International Business Machines Corp., 1991,1992 */
- /* All rights reserved */
- /* */
- /* US Government Users Restricted Rights - */
- /* Use, duplication, or disclosure restricted */
- /* by GSA ADP Schedule Contract with IBM Corp. */
- /* */
- /********************************************************************/
-
- #if (defined( __SPC__ ) || defined(__EXTENDED__))
-
- /* This file defines the file sharing modes for _sopen(). */
-
- #define SH_DENYRW 0x10 /* deny read/write mode */
- #define SH_DENYWR 0x20 /* deny write mode */
- #define SH_DENYRD 0x30 /* deny read mode */
- #define SH_DENYNO 0x40 /* deny none mode */
-
- #endif
-
- #ifdef __cplusplus
- }
- #endif
-
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( restore )
- #endif
- #pragma info( restore )
-
- #endif
-