Silence ADO .h warnings

This commit is contained in:
Simon Rozman 2018-09-07 19:34:56 +02:00
parent 3831012af9
commit 4226774e21
2 changed files with 6 additions and 0 deletions

View File

@ -33,7 +33,10 @@
#include <wx/debug.h> #include <wx/debug.h>
#pragma warning(push)
#pragma warning(disable: 4091)
#include <adoint.h> #include <adoint.h>
#pragma warning(pop)
#include <list> #include <list>
#include <map> #include <map>
#include <memory> #include <memory>

View File

@ -36,8 +36,11 @@
#include <WinStd/Common.h> #include <WinStd/Common.h>
#include <initguid.h> // GUID helper to prevent LNK2001 errors (unresolved external symbol IID_IADO...) #include <initguid.h> // GUID helper to prevent LNK2001 errors (unresolved external symbol IID_IADO...)
#pragma warning(push)
#pragma warning(disable: 4091)
#include <adoint.h> #include <adoint.h>
#include <adoid.h> #include <adoid.h>
#pragma warning(pop)
#include <process.h> #include <process.h>
#include <tchar.h> #include <tchar.h>