autoreload_nop.c 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Copyright 2017 Max Voit
  2. *
  3. * This file is part of sxiv.
  4. *
  5. * sxiv is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published
  7. * by the Free Software Foundation; either version 2 of the License,
  8. * or (at your option) any later version.
  9. *
  10. * sxiv is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with sxiv. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "sxiv.h"
  19. void arl_init(arl_t *arl)
  20. {
  21. arl->fd = -1;
  22. }
  23. void arl_cleanup(arl_t *arl)
  24. {
  25. (void) arl;
  26. }
  27. void arl_setup(arl_t *arl, const char *filepath)
  28. {
  29. (void) arl;
  30. (void) filepath;
  31. }
  32. bool arl_handle(arl_t *arl)
  33. {
  34. (void) arl;
  35. return false;
  36. }