12345678910111213141516 |
- #pragma once
- #if defined(_WIN32)
- // TODO: Windows support
- #elif defined(__APPLE__)
- // TODO: Mac support
- #elif defined(__linux__)
- // TODO: Linux support
- #endif
- #include <util/windows/HRError.hpp>
- #include <util/windows/ComPtr.hpp>
- #include <string>
- bool DeckLinkStringToStdString(decklink_string_t input, std::string& output);
|