| Index: base/base_api.h
|
| ===================================================================
|
| --- base/base_api.h (revision 79631)
|
| +++ base/base_api.h (working copy)
|
| @@ -6,16 +6,12 @@
|
| #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
|
| +#if defined(BASE_IMPLEMENTATION)
|
| #define BASE_API __declspec(dllexport)
|
| #else
|
| #define BASE_API __declspec(dllimport)
|
| -#endif
|
| +#endif // defined(BASE_IMPLEMENTATION)
|
| #else
|
| #define BASE_API
|
| #endif
|
|
|