A Simple X Image Viewer
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

44 satır
993 B

  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 "autoreload.h"
  19. void arl_cleanup(arl_t *arl)
  20. {
  21. (void) arl;
  22. }
  23. bool arl_handle(arl_t *arl, const char *filepath)
  24. {
  25. (void) arl;
  26. (void) filepath;
  27. return false;
  28. }
  29. void arl_init(arl_t *arl)
  30. {
  31. (void) arl;
  32. }
  33. void arl_setup(arl_t *arl, const char *filepath)
  34. {
  35. (void) arl;
  36. (void) filepath;
  37. }