include/mgba-util/dllexports.h (view raw)
1/* Copyright (c) 2013-2020 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#ifndef MGBA_EXPORT_H
7#define MGBA_EXPORT_H
8
9#if defined(BUILD_STATIC) || !defined(_MSC_VER) || defined(MGBA_STANDALONE)
10#define MGBA_EXPORT
11#else
12#ifdef MGBA_DLL
13#define MGBA_EXPORT __declspec(dllexport)
14#else
15#define MGBA_EXPORT __declspec(dllimport)
16#endif
17#endif
18
19#endif