39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
/*
|
|||
|
|
streamer-tools OBS Camera Plugin - core library
|
||
|
|
Copyright (C) 2026 CyberCoveLLC <jknapp85@gmail.com>
|
||
|
|
|
||
|
|
This program is free software; you can redistribute it and/or modify
|
||
|
|
it under the terms of the GNU General Public License as published by
|
||
|
|
the Free Software Foundation; either version 2 of the License, or
|
||
|
|
(at your option) any later version.
|
||
|
|
|
||
|
|
This program is distributed in the hope that it will be useful,
|
||
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
GNU General Public License for more details.
|
||
|
|
|
||
|
|
You should have received a copy of the GNU General Public License along
|
||
|
|
with this program. If not, see <https://www.gnu.org/licenses/>
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
// Minimal C ABI surface of the core library, for the OBS adapter (plain
|
||
|
|
// C, per the obs-plugintemplate convention) to call into the core
|
||
|
|
// library (C++) without needing a C++ compiler in that translation unit.
|
||
|
|
//
|
||
|
|
// This mirrors the boundary the real integration will cross in the
|
||
|
|
// other direction: livekit-ffi is a Rust library exposing a C ABI that
|
||
|
|
// the C++ core library will link against. Proving a small, deliberate
|
||
|
|
// C ABI seam works cleanly here is part of what this scaffold is for.
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
const char *stplugin_core_version(void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|