diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-06-18 04:13:18 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-06-18 04:13:18 +0000 |
commit | 9fe2a2157b08beb8b96270a1a3a1663dad07f74b (patch) | |
tree | fbcec6cae38445626fda69d453c562a960aa145f /winsup/mingw/include/share.h | |
parent | 6cde27195c7527fde31eb06a2025f67657e06150 (diff) | |
download | cygnal-9fe2a2157b08beb8b96270a1a3a1663dad07f74b.tar.gz cygnal-9fe2a2157b08beb8b96270a1a3a1663dad07f74b.tar.bz2 cygnal-9fe2a2157b08beb8b96270a1a3a1663dad07f74b.zip |
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.
Diffstat (limited to 'winsup/mingw/include/share.h')
-rw-r--r-- | winsup/mingw/include/share.h | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/winsup/mingw/include/share.h b/winsup/mingw/include/share.h index 7c4b1c6b0..605d7e796 100644 --- a/winsup/mingw/include/share.h +++ b/winsup/mingw/include/share.h @@ -32,11 +32,25 @@ /* All the headers include this file. */ #include <_mingw.h> -#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 */ +#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 __STRICT_ANSI__ + +#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 */ + +#endif /* Not __STRICT_ANSI__ */ #endif /* Not _SHARE_H_ */ |