13b541978SMasahiro Yamada /* SPDX-License-Identifier: GPL-2.0 */ 23b541978SMasahiro Yamada /* 33b541978SMasahiro Yamada * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 43b541978SMasahiro Yamada */ 53b541978SMasahiro Yamada 63b541978SMasahiro Yamada #ifndef IMAGES_H 73b541978SMasahiro Yamada #define IMAGES_H 83b541978SMasahiro Yamada 93b541978SMasahiro Yamada #ifdef __cplusplus 103b541978SMasahiro Yamada extern "C" { 113b541978SMasahiro Yamada #endif 123b541978SMasahiro Yamada 13*8410e655SMasahiro Yamada extern const char * const xpm_load[]; 14*8410e655SMasahiro Yamada extern const char * const xpm_save[]; 15*8410e655SMasahiro Yamada extern const char * const xpm_back[]; 16*8410e655SMasahiro Yamada extern const char * const xpm_tree_view[]; 17*8410e655SMasahiro Yamada extern const char * const xpm_single_view[]; 18*8410e655SMasahiro Yamada extern const char * const xpm_split_view[]; 19*8410e655SMasahiro Yamada extern const char * const xpm_symbol_no[]; 20*8410e655SMasahiro Yamada extern const char * const xpm_symbol_mod[]; 21*8410e655SMasahiro Yamada extern const char * const xpm_symbol_yes[]; 22*8410e655SMasahiro Yamada extern const char * const xpm_choice_no[]; 23*8410e655SMasahiro Yamada extern const char * const xpm_choice_yes[]; 24*8410e655SMasahiro Yamada extern const char * const xpm_menu[]; 25*8410e655SMasahiro Yamada extern const char * const xpm_menu_inv[]; 26*8410e655SMasahiro Yamada extern const char * const xpm_menuback[]; 27*8410e655SMasahiro Yamada extern const char * const xpm_void[]; 283b541978SMasahiro Yamada 293b541978SMasahiro Yamada #ifdef __cplusplus 303b541978SMasahiro Yamada } 313b541978SMasahiro Yamada #endif 323b541978SMasahiro Yamada 333b541978SMasahiro Yamada #endif /* IMAGES_H */ 34