17 lines
348 B
C++
17 lines
348 B
C++
|
/* share.h - file sharing permission levels
|
||
|
* $Version: 1.11 $
|
||
|
* Copyright (C) 1988-91 Intel Corporation, ALL RIGHTS RESERVED
|
||
|
*/
|
||
|
|
||
|
#ifndef _shareh
|
||
|
#define _shareh
|
||
|
/*lint -library */
|
||
|
|
||
|
#define SH_COMPAT 0x00
|
||
|
#define SH_DENYRW 0x10
|
||
|
#define SH_DENYWR 0x20
|
||
|
#define SH_DENYRD 0x30
|
||
|
#define SH_DENYNO 0x40
|
||
|
|
||
|
#endif /* _shareh */
|