blob: 71076b7b9dfd942602affe6507579a67a6162285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _RCC_LIST_H
#define _RCC_LIST_H
rcc_language_ptr *rccGetLanguageList(rcc_context ctx);
rcc_charset *rccGetCharsetList(rcc_context ctx, rcc_language_id language_id);
rcc_engine_ptr *rccGetEngineList(rcc_context ctx, rcc_language_id language_id);
rcc_charset *rccGetCurrentCharsetList(rcc_context ctx);
rcc_engine_ptr *rccGetCurrentEngineList(rcc_context ctx);
rcc_charset *rccGetCurrentAutoCharsetList(rcc_context ctx);
rcc_class_ptr *rccGetClassList(rcc_context ctx);
#endif /* _RCC_LIST_H */
|