Some checks failed
CI / build-test-release (push) Failing after 5m36s
Canonical LGPL-3.0-only text, GPL-3.0 companion, SPDX headers on all first-party sources, MIT for examples/. Vendored lib/ untouched. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
14 lines
333 B
C
14 lines
333 B
C
//SPDX-License-Identifier: LGPL-3.0-only
|
|
//SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
|
|
|
#pragma once
|
|
|
|
#if defined(_WIN32)
|
|
#if defined(CRAFTER_BUILD_DLL_IMPORT)
|
|
#define CRAFTER_API __declspec(dllimport)
|
|
#else
|
|
#define CRAFTER_API __declspec(dllexport)
|
|
#endif
|
|
#else
|
|
#define CRAFTER_API
|
|
#endif
|