From b69778d811c32fe1c2bfdd66409ff1fd3b32b64b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 2 Dec 2011 15:56:46 +0000 Subject: [PATCH] Fix build on certain mingw versions. --- common/formatter.hpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/common/formatter.hpp b/common/formatter.hpp index 1449eda..5e2143e 100644 --- a/common/formatter.hpp +++ b/common/formatter.hpp @@ -109,8 +109,39 @@ inline std::ostream& operator<<(std::ostream& os, const Attribute *attr) { #ifdef _WIN32 + #include + +#ifndef COMMON_LVB_LEADING_BYTE +##define COMMON_LVB_LEADING_BYTE 0x0100 +#endif + +#ifndef COMMON_LVB_TRAILING_BYTE +##define COMMON_LVB_TRAILING_BYTE 0x0200 +#endif + +#ifndef COMMON_LVB_GRID_HORIZONTAL +##define COMMON_LVB_GRID_HORIZONTAL 0x0400 +#endif + +#ifndef COMMON_LVB_GRID_LVERTICAL +##define COMMON_LVB_GRID_LVERTICAL 0x0800 +#endif + +#ifndef COMMON_LVB_GRID_RVERTICAL +##define COMMON_LVB_GRID_RVERTICAL 0x1000 +#endif + +#ifndef COMMON_LVB_REVERSE_VIDEO +##define COMMON_LVB_REVERSE_VIDEO 0x4000 +#endif + +#ifndef COMMON_LVB_UNDERSCORE +##define COMMON_LVB_UNDERSCORE 0x8000 +#endif + + class WindowsAttribute : public Attribute { protected: WORD wAttributes; -- 2.43.0