/usr/include/openturns/OTwindows.h is in libopenturns-dev 1.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | /*
* @brief Include windows.h cleanly
*/
#ifdef WIN32
#ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
# define NOMINMAX
#endif
#include <windows.h>
// windows.h which defines a HUGE number of macros...
// wrappers
#undef GetClassName
#undef ERROR
#undef IN
#undef OUT
// ev3
#undef DIFFERENCE
#undef CONST
#undef interface
#undef NONE
#endif
|