Merge pull request #550 from b4n/fix-ubuntu-libdir
[geany-mirror.git] / src / win32defines.h
blob212a38518a5c5a7c364be9d5767a03ed6981d7b9
1 /*
2 * win32defines.h - this file is part of Geany, a fast and lightweight IDE
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef WIN32DEFINES_H
20 #define WIN32DEFINES_H 1
22 /* These defines are necessary defines *before* windows.h is included */
24 #define VC_EXTRALEAN
25 #define WIN32_LEAN_AND_MEAN
26 /* Need Windows XP for SHGetFolderPathAndSubDirW */
27 #define WINVER 0x0501
28 /* Needed for SHGFP_TYPE */
29 #define _WIN32_IE 0x0500
31 #endif /* WIN32DEFINES_H */