From 173e0172092fa87606a80a7b0d6b89323c7166b5 Mon Sep 17 00:00:00 2001 From: Lionel Elie Mamane Date: Fri, 26 Sep 2014 18:25:56 +0200 Subject: factorise odbc headers inclusion it is complicated enough that we should implement that logic only once Change-Id: I0cc5ffb871223b27df825f21612e3c8f6f2febb3 --- dbaccess/source/ui/dlg/odbcconfig.cxx | 36 +---------------------------------- 1 file changed, 1 insertion(+), 35 deletions(-) (limited to 'dbaccess/source/ui/dlg/odbcconfig.cxx') diff --git a/dbaccess/source/ui/dlg/odbcconfig.cxx b/dbaccess/source/ui/dlg/odbcconfig.cxx index e75b160fe5e2..c301918eb9c7 100644 --- a/dbaccess/source/ui/dlg/odbcconfig.cxx +++ b/dbaccess/source/ui/dlg/odbcconfig.cxx @@ -20,12 +20,6 @@ #include #include "odbcconfig.hxx" -#ifdef SYSTEM_ODBC_HEADERS -#include -#else -#include -#endif - #include #include #include @@ -49,35 +43,7 @@ #endif #endif -// just to go with calling convention of windows -// so don't touch this -#if defined(WNT) -#undef SQL_API -#define SQL_API __stdcall -// At least under some circumstances, the below #include re- -// defines SQL_API to an empty string, leading to a compiler warning on MSC; to -// not break the current behavior, this is worked around by locally disabling -// that warning: -#if defined _MSC_VER -#pragma warning(push) -#pragma warning(disable: 4005) -#endif -#endif // defined(WNT) - -#ifdef SYSTEM_ODBC_HEADERS -#include -#else -#include -#endif - -#if defined(WNT) -#if defined _MSC_VER -#pragma warning(pop) -#endif -#undef SQL_API -#define SQL_API __stdcall -#endif // defined(WNT) -// from here on you can do what you want to +#include #else -- cgit