Loading...
Searching...
No Matches
malena_export.h
Go to the documentation of this file.
1// Copyright (c) 2025 Dave R. Smith. All rights reserved.
2// Malena Framework — Proprietary Software. See LICENSE for terms.
3
4#ifndef MALENA_MALENA_EXPORT_H
5#define MALENA_MALENA_EXPORT_H
6
7#pragma once
8
9#ifdef _WIN32
10# ifdef MALENA_EXPORTS
11# define MALENA_API __declspec(dllexport)
12# elif defined(MALENA_SHARED)
13# define MALENA_API __declspec(dllimport)
14# else
15# define MALENA_API
16# endif
17#else
18# define MALENA_API
19#endif
20
21#endif // MALENA_MALENA_EXPORT_H