// Copyright (C) 2018-2025 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #pragma once #include "openvino/frontend/visibility.hpp" #ifdef OPENVINO_STATIC_LIBRARY # define PYTORCH_FRONTEND_API # define PYTORCH_FRONTEND_C_API #else # ifdef openvino_pytorch_frontend_EXPORTS # define PYTORCH_FRONTEND_API OPENVINO_CORE_EXPORTS # define PYTORCH_FRONTEND_C_API OPENVINO_EXTERN_C OPENVINO_CORE_EXPORTS # else # define PYTORCH_FRONTEND_API OPENVINO_CORE_IMPORTS # define PYTORCH_FRONTEND_C_API OPENVINO_EXTERN_C OPENVINO_CORE_IMPORTS # endif // openvino_pytorch_frontend_EXPORTS #endif // OPENVINO_STATIC_LIBRARY