mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-08 08:04:16 -04:00
15 lines
268 B
C++
15 lines
268 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, const char* outPath);
|