VR-Engage  2.2
Loading...
Searching...
No Matches
export.h
Go to the documentation of this file.
1/*******************************************************************************
2** Copyright (c) 2025 MAK Technologies
3** All rights reserved.
4*******************************************************************************/
5
6//! \file export.h
7//! \ingroup vreVrfmodel
8//! \brief Defines export macros for the vreVrfmodel library
9//!
10//! This file provides the necessary export declarations for the vreVrfmodel library
11//! to ensure proper symbol visibility across different platforms.
12
13#pragma once
14
15#ifdef _WIN32
16 #ifdef VREVRFMODEL_EXPORTS
17 #define VREVRFMODEL_DLL __declspec(dllexport)
18 #else
19 #define VREVRFMODEL_DLL __declspec(dllimport)
20 #endif
21#else
22 #define VREVRFMODEL_DLL
23#endif