/* LibRCC - module providing various titles in appropriate language and encoding Copyright (C) 2005-2018 Suren A. Chilingaryan This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 or later as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _RCC_UI_NAMES_C #define _RCC_UI_NAMES_H extern rcc_name rcc_default_language_names[]; extern rcc_name rcc_default_language_names_embeded[]; extern rcc_option_name rcc_default_option_names[]; extern rcc_option_name rcc_default_option_names_embeded[]; extern rcc_ui_page_name rcc_ui_default_page_name; extern rcc_ui_page_name rcc_ui_default_page_name_embeded; extern rcc_name *rcc_default_class_names; extern rcc_name *rcc_default_charset_names; extern rcc_name *rcc_default_engine_names; rcc_name *rccUiGetLanguageRccName(rcc_ui_context ctx, const char *lang); rcc_name *rccUiGetCharsetRccName(rcc_ui_context ctx, const char *charset); rcc_name *rccUiGetEngineRccName(rcc_ui_context ctx, const char *engine); rcc_name *rccUiGetClassRccName(rcc_ui_context ctx, const char *cl); rcc_option_name *rccUiGetOptionRccName(rcc_ui_context ctx, rcc_option option); #endif /* _RCC_UI_NAMES_H */