view Utils/Export.h @ 10:9a3c1a6f9833

TODO: FIX HW flow control definitions in case of problem during communication. Background: Flags are not defined in terminos header
author Ideenmodellierer
date Mon, 12 Jan 2026 13:55:38 +0000
parents 0b3630a29ad8
children
line wrap: on
line source

#ifndef EXPORT_H
#define EXPORT_H


#pragma once

// Auf Windows unterscheidet man zwischen DLL-Export (build der DLL) und DLL-Import (Verwendung der DLL)
#if defined(_WIN32)
#if defined(BUILDING_OSTC_COMPANION)
#define EXPORT __declspec(dllexport)
#else
#define EXPORT __declspec(dllimport)
#endif
#else
#define EXPORT
#endif

#endif // EXPORT_H