/* streamer-tools OBS Camera Plugin Copyright (C) 2026 CyberCoveLLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 */ /* Adapted from obsproject/obs-plugintemplate (commit 3e7d7ac, * 2025-12-09), the standard starting point for third-party OBS * plugins. */ #pragma once #ifdef __cplusplus extern "C" { #endif #include #include #include #include extern const char *PLUGIN_NAME; extern const char *PLUGIN_VERSION; void obs_log(int log_level, const char *format, ...); extern void blogva(int log_level, const char *format, va_list args); #ifdef __cplusplus } #endif