mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-07 15:44:14 -04:00
15 lines
247 B
C++
15 lines
247 B
C++
#pragma once
|
|
#ifdef TRANSCODER_EXPORTS
|
|
#define API __declspec(dllexport)
|
|
#else
|
|
#define API __declspec(dllimport)
|
|
#endif
|
|
|
|
#include <iostream>
|
|
#include "Stream.h"
|
|
|
|
|
|
extern "C" API int Init();
|
|
|
|
extern "C" API void ExtractSubtitles(const char* path);
|