Entropic 2.11.1
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
17#pragma once
18
19#if defined(ENTROPIC_STATIC_BUILD)
20 /* Static build — no import/export decoration */
21 #define ENTROPIC_EXPORT
22#elif defined(_WIN32)
23 #if defined(ENTROPIC_BUILDING_DLL)
24 #define ENTROPIC_EXPORT __declspec(dllexport)
25 #else
26 #define ENTROPIC_EXPORT __declspec(dllimport)
27 #endif
28#else
29 #define ENTROPIC_EXPORT __attribute__((visibility("default")))
30#endif