Lucene++ - a full-featured, c++ search engine
API Documentation


Loading...
Searching...
No Matches
targetver.h
Go to the documentation of this file.
1
2// Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3// Distributable under the terms of either the Apache License (Version 2.0)
4// or the GNU Lesser General Public License.
6
7#ifndef TARGETVER_H
8#define TARGETVER_H
9
10#ifdef _WIN32
11
12#ifndef WINVER // Specifies that the minimum required platform is Windows XP.
13#define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
14#endif
15
16#ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows XP.
17#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
18#endif
19
20#endif
21#endif

clucene.sourceforge.net