images.h 757 B

123456789101112131415161718192021222324252627282930313233
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2002 Roman Zippel <[email protected]>
  4. */
  5. #ifndef IMAGES_H
  6. #define IMAGES_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. extern const char *xpm_load[];
  11. extern const char *xpm_save[];
  12. extern const char *xpm_back[];
  13. extern const char *xpm_tree_view[];
  14. extern const char *xpm_single_view[];
  15. extern const char *xpm_split_view[];
  16. extern const char *xpm_symbol_no[];
  17. extern const char *xpm_symbol_mod[];
  18. extern const char *xpm_symbol_yes[];
  19. extern const char *xpm_choice_no[];
  20. extern const char *xpm_choice_yes[];
  21. extern const char *xpm_menu[];
  22. extern const char *xpm_menu_inv[];
  23. extern const char *xpm_menuback[];
  24. extern const char *xpm_void[];
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif /* IMAGES_H */