mirror of
https://github.com/zoriya/Kyoo.Transcoder.git
synced 2025-12-06 06:26:11 +00:00
14 lines
229 B
C
14 lines
229 B
C
//
|
|
// Created by Anonymus Raccoon on 15/12/2019.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#if defined _WIN32 || defined __CYGWIN__
|
|
#define API __declspec(dllexport)
|
|
#elif defined __GNUC__
|
|
#define API __attribute__((unused))
|
|
#else
|
|
#define API
|
|
#endif
|