feat():initial version
This commit is contained in:
27
install/vsomeip-3.7.3/include/vsomeip/export.hpp
Normal file
27
install/vsomeip-3.7.3/include/vsomeip/export.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
// Copyright (C) 2014-2026 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
|
||||
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
#pragma once
|
||||
|
||||
#if _WIN32
|
||||
#define VSOMEIP_EXPORT __declspec(dllexport)
|
||||
#define VSOMEIP_EXPORT_CLASS_EXPLICIT
|
||||
|
||||
#if VSOMEIP_DLL_COMPILATION
|
||||
#define VSOMEIP_IMPORT_EXPORT __declspec(dllexport)
|
||||
#else
|
||||
#define VSOMEIP_IMPORT_EXPORT __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
#if VSOMEIP_DLL_COMPILATION_CONFIG
|
||||
#define VSOMEIP_IMPORT_EXPORT_CONFIG __declspec(dllexport)
|
||||
#else
|
||||
#define VSOMEIP_IMPORT_EXPORT_CONFIG __declspec(dllimport)
|
||||
#endif
|
||||
#else
|
||||
#define VSOMEIP_EXPORT
|
||||
#define VSOMEIP_IMPORT_EXPORT
|
||||
#define VSOMEIP_IMPORT_EXPORT_CONFIG
|
||||
#endif
|
||||
Reference in New Issue
Block a user