Entropic 2.3.8
Local-first agentic inference engine
Loading...
Searching...
No Matches
entropic_export.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
16#pragma once
17
18#if defined(ENTROPIC_STATIC_BUILD)
19 /* Static build — no import/export decoration */
20 #define ENTROPIC_EXPORT
21#elif defined(_WIN32)
22 #if defined(ENTROPIC_BUILDING_DLL)
23 #define ENTROPIC_EXPORT __declspec(dllexport)
24 #else
25 #define ENTROPIC_EXPORT __declspec(dllimport)
26 #endif
27#else
28 #define ENTROPIC_EXPORT __attribute__((visibility("default")))
29#endif