1 /* 2 * Copyright (c) 2015 TDK Invensense 3 * 4 * SPDX-License-Identifier: BSD 3-Clause 5 */ 6 7 #ifndef _INV_IDD_EXPORT_H_ 8 #define _INV_IDD_EXPORT_H_ 9 10 #if defined(_WIN32) 11 #if !defined(INV_EXPORT) && defined(INV_DO_DLL_EXPORT) 12 #define INV_EXPORT __declspec(dllexport) 13 #elif !defined(INV_EXPORT) && defined(INV_DO_DLL_IMPORT) 14 #define INV_EXPORT __declspec(dllimport) 15 #endif 16 #endif 17 18 #if !defined(INV_EXPORT) 19 #define INV_EXPORT 20 #endif 21 22 #endif /* _INV_IDD_EXPORT_H_ */ 23