tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

CityHash.h (708B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this
      4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      5 
      6 #ifndef WINVER
      7 #define WINVER 0x0600
      8 #endif
      9 
     10 #ifndef _WIN32_WINNT
     11 #define _WIN32_WINNT 0x0600
     12 #endif
     13 
     14 #ifndef _WIN32_WINDOWS
     15 #define _WIN32_WINDOWS 0x0410
     16 #endif
     17 
     18 #ifndef _WIN32_IE
     19 #define _WIN32_IE 0x0700
     20 #endif
     21 
     22 #ifndef WIN32_LEAN_AND_MEAN
     23 #define WIN32_LEAN_AND_MEAN
     24 #endif
     25 #include <windows.h>
     26 
     27 #ifdef CITYHASH_EXPORTS
     28 #define CITYHASH_API __declspec(dllexport)
     29 #else
     30 #define CITYHASH_API __declspec(dllimport)
     31 #endif