You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
911 B
34 lines
911 B
3 years ago
|
// Copyright (c) 2017 The LevelDB Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
||
|
|
||
|
#ifndef STORAGE_LEVELDB_INCLUDE_EXPORT_H_
|
||
|
#define STORAGE_LEVELDB_INCLUDE_EXPORT_H_
|
||
|
|
||
|
#if !defined(LEVELDB_EXPORT)
|
||
|
|
||
|
#if defined(LEVELDB_SHARED_LIBRARY)
|
||
|
#if defined(_WIN32)
|
||
|
|
||
|
#if defined(LEVELDB_COMPILE_LIBRARY)
|
||
|
#define LEVELDB_EXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define LEVELDB_EXPORT __declspec(dllimport)
|
||
|
#endif // defined(LEVELDB_COMPILE_LIBRARY)
|
||
|
|
||
|
#else // defined(_WIN32)
|
||
|
#if defined(LEVELDB_COMPILE_LIBRARY)
|
||
|
#define LEVELDB_EXPORT __attribute__((visibility("default")))
|
||
|
#else
|
||
|
#define LEVELDB_EXPORT
|
||
|
#endif
|
||
|
#endif // defined(_WIN32)
|
||
|
|
||
|
#else // defined(LEVELDB_SHARED_LIBRARY)
|
||
|
#define LEVELDB_EXPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // !defined(LEVELDB_EXPORT)
|
||
|
|
||
|
#endif // STORAGE_LEVELDB_INCLUDE_EXPORT_H_
|