Chromium Code Reviews| Index: media/cdm/content_decryption_module_export.h |
| diff --git a/media/cdm/content_decryption_module_export.h b/media/cdm/content_decryption_module_export.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..608bcfded0001ca72b5bb2b0a35922c95b6a049a |
| --- /dev/null |
| +++ b/media/cdm/content_decryption_module_export.h |
| @@ -0,0 +1,22 @@ |
| +// Copyright 2016 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 CDM_CONTENT_DECRYPTION_MODULE_EXPORT_H_ |
| +#define CDM_CONTENT_DECRYPTION_MODULE_EXPORT_H_ |
|
xhwang
2016/12/16 01:06:55
This will be shared by cdm.h and cdm_ext.h.
|
| + |
| +// Define CDM_API so that functionality implemented by the CDM module |
| +// can be exported to consumers. |
| +#if defined(WIN32) |
| + |
| +#if defined(CDM_IMPLEMENTATION) |
| +#define CDM_API __declspec(dllexport) |
| +#else |
| +#define CDM_API __declspec(dllimport) |
| +#endif // defined(CDM_IMPLEMENTATION) |
| + |
| +#else // defined(WIN32) |
| +#define CDM_API __attribute__((visibility("default"))) |
| +#endif // defined(WIN32) |
| + |
| +#endif // CDM_CONTENT_DECRYPTION_MODULE_EXPORT_H_ |