/***************************************************************************\ * * * WINDOWS.H * * * * Some headers are used from the cygnus project * * Modified by: * * kiefer@isys.de * * rainer@mathematik.uni-bielefeld.de * * * \***************************************************************************/ #if !defined (_WINDOWS_H) || !defined(_INC_WINDOWS) #define _WINDOWS_H #define _INC_WINDOWS #ifdef __cplusplus extern "C" { #endif #if defined (RC_INVOKED) #define NOGDI #else #include #endif /* unicode stuff - minimize #ifdef */ #ifdef UNICODE #define TSTRUCT(x) x##W #define TFUNCT(x) x##W #else /* not UNICODE */ #define TSTRUCT(x) x##A #define TFUNCT(x) x##A #endif #include #include #if !defined (NOKERNEL) #include #include #include #endif #if !defined(NOUSER) #include #endif #if !defined (NOGDI) #include #endif #if !defined (WIN32_LEAN_AND_MEAN) #include #include #include #endif #ifdef __cplusplus } #endif #endif /* !defined (_WINDOWS_H) */