plugin-main.cpp 246 B

123456789101112131415
  1. #include <obs-module.h>
  2. OBS_DECLARE_MODULE()
  3. void RegisterWASAPIInput();
  4. void RegisterWASAPIOutput();
  5. bool obs_module_load(uint32_t libobs_ver)
  6. {
  7. UNUSED_PARAMETER(libobs_ver);
  8. RegisterWASAPIInput();
  9. RegisterWASAPIOutput();
  10. return true;
  11. }