/* winlean.h - Standard "lean" windows include Copyright 2010, 2011, 2012 Red Hat, Inc. This file is part of Cygwin. This software is a copyrighted work licensed under the terms of the Cygwin license. Please consult the file "CYGWIN_LICENSE" for details. */ #ifndef _WINLEAN_H #define _WINLEAN_H 1 #define WIN32_LEAN_AND_MEAN 1 #define _WINGDI_H #define _WINUSER_H #define _WINNLS_H #define _WINVER_H #define _WINNETWK_H #define _WINSVC_H #define __STRALIGN_H_ #include #include #include #include #undef _WINGDI_H #undef _WINUSER_H #undef _WINNLS_H #undef _WINVER_H #undef _WINNETWK_H #undef _WINSVC_H #undef __STRALIGN_H_ /* When Terminal Services are installed, the GetWindowsDirectory function does not return the system installation dir, but a user specific directory instead. That's not what we have in mind when calling GetWindowsDirectory from within Cygwin. So we redefine GetWindowsDirectory to something invalid here to avoid that it's called accidentally in Cygwin. Don't use this function. Use GetSystemWindowsDirectoryW. */ #define GetWindowsDirectoryW dont_use_GetWindowsDirectory #define GetWindowsDirectoryA dont_use_GetWindowsDirectory /* FILE_SHARE_VALID_FLAGS is a Mingw32 invention not backed by the system headers. Therefore it's not defined by Mingw64, either. */ #ifdef __MINGW64_VERSION_MAJOR #define FILE_SHARE_VALID_FLAGS (FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE) #endif #endif /*_WINLEAN_H*/