plugin-main.cpp 214 B

12345678910111213
  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. RegisterWASAPIInput();
  8. RegisterWASAPIOutput();
  9. return true;
  10. }