This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/Borland/BCC55/Include/share.h

35 lines
702 B
C

/* share.h
File sharing mode for use with sopen.
See DOS function 3Dh for definition.
*/
/*
* C/C++ Run Time Library - Version 10.0
*
* Copyright (c) 1987, 2000 by Inprise Corporation
* All Rights Reserved.
*
*/
/* $Revision: 9.0 $ */
#if !defined( __SHARE_H )
#define __SHARE_H
#if !defined( ___DEFS_H )
#include <_defs.h>
#endif
#define SH_COMPAT 0x00 /* compatibility mode */
#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 */
#define SH_DENYNONE SH_DENYNO
#endif /* __SHARE_H */