Kyoo/Kyoo.Transcoder/Transcoder.h
2019-09-05 01:31:45 +02:00

15 lines
241 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 Video ScanVideo(std::string path);