plugin-main.c 895 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. Plugin Name
  3. Copyright (C) <Year> <Developer> <Email Address>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License along
  13. with this program. If not, see <https://www.gnu.org/licenses/>
  14. */
  15. #include <obs-module.h>
  16. OBS_DECLARE_MODULE()
  17. bool obs_module_load(void)
  18. {
  19. blog(LOG_INFO, "plugin loaded successfully");
  20. return true;
  21. }
  22. void obs_module_unload()
  23. {
  24. blog(LOG_INFO, "plugin unloaded");
  25. }