kill multi repo support: BuildDirs and gbuild.mk, GNUmakefile.mk
[LibreOffice.git] / embedserv / source / inc / stdafx.h
blobc1110ac8ab427bafbfccf94faf0a6e824686de15
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 #if !defined(AFX_STDAFX_H_)
3 #define AFX_STDAFX_H_
5 #if _MSC_VER > 1000
6 #pragma once
7 #endif // _MSC_VER > 1000
9 #define STRICT
10 #ifndef _WIN32_WINNT
11 #define _WIN32_WINNT 0x0403
12 #endif
13 #define _ATL_APARTMENT_THREADED
14 // #define _ATL_STATIC_REGISTRY
16 #ifdef _MSC_VER
17 #pragma warning(push)
18 #pragma warning(push, 1)
19 #pragma warning(disable: 4548)
20 #pragma warning(disable: 4505)
21 #endif
22 #include <atlbase.h>
23 //You may derive a class from CComModule and use it if you want to override
24 //something, but do not change the name of _Module
25 extern CComModule _Module;
26 #ifdef __MINGW32__
27 #include <algorithm>
28 using ::std::min;
29 using ::std::max;
30 #endif
31 #include <atlcom.h>
32 #include <atlctl.h>
34 //{{AFX_INSERT_LOCATION}}
35 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
37 #ifdef _MSC_VER
38 #pragma warning(pop)
39 #pragma warning(pop)
40 #endif
42 #endif
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */