Mercurial > public > ostc_companion
view Utils/Export.h @ 14:e47e0f59101d default tip
Enable OSTC 4/5 Icon option
The button for uploading the icon is now activated based on the first FW
version supporting this function
| author | Ideenmodellierer |
|---|---|
| date | Mon, 12 Jan 2026 18:47:00 +0100 |
| 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
