mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 23:19:11 +00:00
12 lines
193 B
C
12 lines
193 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#ifdef LIBVIDEO2X_EXPORTS
|
||
|
#define LIBVIDEO2X_API __declspec(dllexport)
|
||
|
#else
|
||
|
#define LIBVIDEO2X_API __declspec(dllimport)
|
||
|
#endif
|
||
|
#else
|
||
|
#define LIBVIDEO2X_API
|
||
|
#endif
|