mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-05 06:34:13 -04:00
10 lines
149 B
C
10 lines
149 B
C
#pragma once
|
|
|
|
#ifdef TRANSCODER_EXPORTS
|
|
#define API __declspec(dllexport)
|
|
#else
|
|
#define API __declspec(dllimport)
|
|
#endif
|
|
|
|
extern "C" API int Init();
|