2000-02-17 20:38:33 +01:00
|
|
|
/*
|
|
|
|
* share.h
|
2004-04-21 00:49:32 +02:00
|
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
|
|
|
* This file is a part of the mingw-runtime package.
|
|
|
|
* No warranty is given; refer to the file DISCLAIMER within the package.
|
2000-02-17 20:38:33 +01:00
|
|
|
*
|
|
|
|
* Constants for file sharing functions.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SHARE_H_
|
|
|
|
#define _SHARE_H_
|
|
|
|
|
|
|
|
/* All the headers include this file. */
|
|
|
|
#include <_mingw.h>
|
|
|
|
|
2002-06-18 Casper S. Hornstrup <chorns@users.sourceforge.net>
* include/_mingw.h (__MINGW_IMPORT): Check for prior definition before
defining.
* include/excpt.h (): Include windef.h not windows.h.
* include/fcntl.h (_O_SHORT_LIVED): Add define.
(_chmod): Add prototype.
(_creat): Correct prototype.
(SH_DENY*): Rename defines to _SH_DENY*.
(SH_DENY*): Add Non-ANSI names for _SH_DENY*.
include/stdio.h (_IOMYBUF, _IOEOF, _IOERR, _IOSTRG,
_IOAPPEND): Add defines.
(_wfindfirst): Correct prototype.
(_wfdopen): Add prototype.
* include/stdlib.h (_rotl, _rotr, _lrotl, _lrotr): Add
prototypes.
* include/string.h (_mbschr, _mbstok, _mbsncat): Remove
prototypes.
(_wcsdup): Correct prototype.
* include/mbstring.h: Remove comments about _mbschr, _mbstok,
_mbsncat being in string.h.
* include/wchar.h (_wfindfirst): Correct prototype.
* include/tchar.h (_tfdopen): Add _UNICODE mappings.
2002-06-18 06:13:18 +02:00
|
|
|
#define _SH_COMPAT 0x00 /* Compatibility */
|
|
|
|
#define _SH_DENYRW 0x10 /* Deny read/write */
|
|
|
|
#define _SH_DENYWR 0x20 /* Deny write */
|
|
|
|
#define _SH_DENYRD 0x30 /* Deny read */
|
|
|
|
#define _SH_DENYNO 0x40 /* Deny nothing */
|
|
|
|
|
|
|
|
#ifndef _NO_OLDNAMES
|
|
|
|
|
|
|
|
/* Non ANSI names */
|
|
|
|
#define SH_DENYRW _SH_DENYRW
|
|
|
|
#define SH_DENYWR _SH_DENYWR
|
|
|
|
#define SH_DENYRD _SH_DENYRD
|
|
|
|
#define SH_DENYNO _SH_DENYNO
|
|
|
|
|
|
|
|
#endif /* Not _NO_OLDNAMES */
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#endif /* Not _SHARE_H_ */
|