2008-12-13 21:28:05 +00:00
|
|
|
/**
|
2007-09-24 11:40:54 +00:00
|
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
2008-12-13 21:28:05 +00:00
|
|
|
* This file is part of the w64 mingw-runtime package.
|
|
|
|
* No warranty is given; refer to the file DISCLAIMER within this package.
|
2007-09-24 11:40:54 +00:00
|
|
|
*/
|
2008-12-13 21:28:05 +00:00
|
|
|
#ifndef _INC_SHARE
|
|
|
|
#define _INC_SHARE
|
2007-09-24 11:40:54 +00:00
|
|
|
|
2008-12-13 21:28:05 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#error Only Win32 target is supported!
|
|
|
|
#endif
|
2007-09-24 11:40:54 +00:00
|
|
|
|
Update excpt.h, fcntl.h, float.h, math.c, mbctype.h, setjmp.h, share.h, stddef.h, stdio.h, stdlib.h, string.h, wchar.h from ming64
- fix __p__mbctype()
- add some stuff to wine/exception.h that was formerly in except.h, but doesn't belong there
- inlcude intrin.h from _mingw.h
svn path=/trunk/; revision=38252
2008-12-21 22:43:46 +00:00
|
|
|
#define _SH_COMPAT 0x00
|
2008-12-13 21:28:05 +00:00
|
|
|
#define _SH_DENYRW 0x10
|
|
|
|
#define _SH_DENYWR 0x20
|
|
|
|
#define _SH_DENYRD 0x30
|
|
|
|
#define _SH_DENYNO 0x40
|
|
|
|
#define _SH_SECURE 0x80
|
2007-09-24 11:40:54 +00:00
|
|
|
|
2008-12-13 21:28:05 +00:00
|
|
|
#ifndef NO_OLDNAMES
|
|
|
|
#define SH_COMPAT _SH_COMPAT
|
2007-09-24 11:40:54 +00:00
|
|
|
#define SH_DENYRW _SH_DENYRW
|
|
|
|
#define SH_DENYWR _SH_DENYWR
|
|
|
|
#define SH_DENYRD _SH_DENYRD
|
|
|
|
#define SH_DENYNO _SH_DENYNO
|
2008-12-13 21:28:05 +00:00
|
|
|
#endif
|
2007-09-24 11:40:54 +00:00
|
|
|
|
2008-12-13 21:28:05 +00:00
|
|
|
#endif
|