bump product version to 4.1.6.2
[LibreOffice.git] / include / prewin.h
blobe98b901e6e59962bc7c035590f38e9dc07b73c54
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 /* nicht geschuetzt, darf nur einmal includet werden */
22 #if defined WNT
24 #define Rectangle BLA_Rectangle
25 #define Polygon BLA_Polygon
26 #define PolyPolygon BLA_PolyPolygon
27 #define Region WIN_Region
28 #define Folder WIN_Folder
29 #define GradientStyle_RECT WIN_GradientStyle_RECT
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
35 #if !defined STRICT
36 #define STRICT
37 #endif
38 #ifdef _MSC_VER
39 #pragma warning(push, 1)
40 #pragma warning (disable: 4005)
41 #endif
42 #include <windows.h>
43 #ifdef _MSC_VER
44 #pragma warning(pop)
45 #endif
46 #include <shellapi.h>
47 #include <commdlg.h>
48 #include <dlgs.h>
49 #ifdef USE_TOOLHELP
50 #include <tlhelp32.h>
51 #endif
52 #ifdef USE_IMAGEHLP
53 #include <imagehlp.h>
54 #endif
55 #ifdef INCLUDE_MMSYSTEM
56 #include <mmsystem.h>
57 #endif
58 #ifdef _MSC_VER
59 #pragma warning(push, 1)
60 #endif
61 #include <commctrl.h>
62 #ifdef _MSC_VER
63 #pragma warning(pop)
64 #endif
66 #endif
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */