From: José Fonseca Date: Fri, 2 Dec 2011 15:56:46 +0000 (+0000) Subject: Fix build on certain mingw versions. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=b69778d811c32fe1c2bfdd66409ff1fd3b32b64b;p=apitrace Fix build on certain mingw versions. --- 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;