/usr/include/libfilezilla/private/windows.hpp is in libfilezilla-dev 0.4.0.1-1.
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #ifndef LIBFILEZILLA_PRIVATE_WINDOWS_HEADER
#define LIBFILEZILLA_PRIVATE_WINDOWS_HEADER
#ifndef FZ_WINDOWS
#error "You included a file you should not include"
#endif
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
// Don't let Windows headers #define min/max, clashes with std::min/max
#ifndef NOMINMAX
#define NOMINMAX
#endif
// IE 7 or higher
#ifndef _WIN32_IE
#define _WIN32_IE 0x0700
#elif _WIN32_IE <= 0x0700
#undef _WIN32_IE
#define _WIN32_IE 0x0700
#endif
// Windows Vista or higher
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0600
#elif _WIN32_WINNT < 0x0600
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0600
#endif
// Windows Vista or higher
#ifndef WINVER
#define WINVER 0x0600
#elif WINVER < 0x0600
#undef WINVER
#define WINVER 0x0600
#endif
#ifndef _UNICODE
#define _UNICODE
#endif
#ifndef UNICODE
#define UNICODE
#endif
#include <windows.h>
#include <shellapi.h>
#endif
|