diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-12 03:55:23 +0000 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-12 03:55:23 +0000 |
commit | e598a2372179812389a702b78d5f8537eb6827d9 (patch) | |
tree | fad90d39ca5781d5ffdf4e9131050fe79d3e5383 /src/rccconfig.h | |
parent | 6b44784148735f594ac862abcd38c50c5d556df0 (diff) | |
download | librcc-e598a2372179812389a702b78d5f8537eb6827d9.tar.gz librcc-e598a2372179812389a702b78d5f8537eb6827d9.tar.bz2 librcc-e598a2372179812389a702b78d5f8537eb6827d9.tar.xz librcc-e598a2372179812389a702b78d5f8537eb6827d9.zip |
Language and Option Names
Diffstat (limited to 'src/rccconfig.h')
-rw-r--r-- | src/rccconfig.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/rccconfig.h b/src/rccconfig.h index 89bbac8..fa644cc 100644 --- a/src/rccconfig.h +++ b/src/rccconfig.h @@ -1,6 +1,7 @@ #ifndef _RCC_CONFIG_H #define _RCC_CONFIG_H #include "librcc.h" +#include "opt.h" #undef RCC_DEBUG #define RCC_LOCALE_VARIABLE "LC_CTYPE" @@ -15,7 +16,9 @@ extern rcc_engine rcc_russian_engine; extern rcc_language rcc_default_languages[]; -extern rcc_language_name rcc_default_language_names[]; -extern rcc_option_name rcc_default_option_names[]; +extern rcc_option_description rcc_option_descriptions[]; + +rcc_option_description *rccGetOptionDescription(rcc_option option); +rcc_option_description *rccGetOptionDescriptionByName(const char *name); #endif /* _RCC_CONFIG_H */ |