Kyoo/Kyoo.Transcoder/src/Transcoder.h
2019-09-10 03:01:16 +02:00

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);