michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef WINVER michael@0: #define WINVER 0x0600 michael@0: #endif michael@0: michael@0: #ifndef _WIN32_WINNT michael@0: #define _WIN32_WINNT 0x0600 michael@0: #endif michael@0: michael@0: #ifndef _WIN32_WINDOWS michael@0: #define _WIN32_WINDOWS 0x0410 michael@0: #endif michael@0: michael@0: #ifndef _WIN32_IE michael@0: #define _WIN32_IE 0x0700 michael@0: #endif michael@0: michael@0: #define WIN32_LEAN_AND_MEAN michael@0: #include michael@0: michael@0: #ifdef CITYHASH_EXPORTS michael@0: #define CITYHASH_API __declspec(dllexport) michael@0: #else michael@0: #define CITYHASH_API __declspec(dllimport) michael@0: #endif michael@0: michael@0: #ifndef ssize_t michael@0: typedef int ssize_t; michael@0: #endif