mirror of
https://github.com/tribufu/sdk-rust
synced 2026-02-04 17:33:07 +00:00
22 lines
457 B
C
22 lines
457 B
C
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#ifndef DLLEXPORT
|
|
#define DLLEXPORT __declspec(dllexport)
|
|
#endif
|
|
#ifndef DLLIMPORT
|
|
#define DLLIMPORT __declspec(dllimport)
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef __MACH__ || __APPLE__ || __linux__ || __FreeBSD__ || __ANDROID__
|
|
#ifndef DLLEXPORT
|
|
#define DLLEXPORT __attribute__((visibility("default")))
|
|
#endif
|
|
#ifndef DLLIMPORT
|
|
#define DLLIMPORT __attribute__((visibility("default")))
|
|
#endif
|
|
#endif
|