mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-06 05:05:12 -05:00
15 lines
241 B
C++
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);
|