diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-22 22:11:08 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-22 22:11:08 +0000 |
commit | f53121d2c69801353feb2531446a1b1b93e576d4 (patch) | |
tree | ed081a0331dcb0df724fab00d043a1e5837e0857 /base/base_api.h | |
parent | a75573d945926b844f7b1932b11088dd3956577d (diff) | |
download | chromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.zip chromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.tar.gz chromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.tar.bz2 |
Base: First pass at having base.dll: definition of
BASE_API and a few files that use it.
BUG=76996
TEST=none
Review URL: http://codereview.chromium.org/6725001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79056 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_api.h')
-rw-r--r-- | base/base_api.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/base/base_api.h b/base/base_api.h new file mode 100644 index 0000000..e3cfd28 --- /dev/null +++ b/base/base_api.h @@ -0,0 +1,23 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef BASE_BASE_API_H_ +#define BASE_BASE_API_H_ +#pragma once + +#if !defined(BASE_IMPLEMENTATION) +#define BASE_IMPLEMENTATION 0 +#endif + +#if defined(WIN32) && defined(BASE_DLL) +#if BASE_IMPLEMENTATION +#define BASE_API __declspec(dllexport) +#else +#define BASE_API __declspec(dllimport) +#endif +#else +#define BASE_API +#endif + +#endif // BASE_BASE_API_H_ |