/rusxmms/librcc

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcc

« back to all changes in this revision

Viewing changes to src/rccconfig.c

  • Committer: Suren A. Chilingaryan
  • Date: 2005-06-28 23:44:19 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcc--main--0.1--patch-2
29.06.2005

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include <stdio.h>
2
2
#include <librcd.h>
3
3
 
4
 
#include "config.h"
 
4
#include "internal.h"
 
5
#include "rccconfig.h"
5
6
 
6
 
static rcc_charset_id rcc_autoengine_russian(rcc_engine_context ctx, char *buf, int len) {
7
 
    return (int)get_russian_charset(buf,len);
 
7
static rcc_charset_id rcc_autoengine_russian(rcc_engine_context ctx, const char *buf, int len) {
 
8
    return (rcc_charset_id)rcdGetRussianCharset(buf,len);
8
9
}
9
10
 
10
11
rcc_language_alias rcc_default_aliases[] = {
93
94
{NULL}
94
95
};
95
96
 
96
 
/*
97
 
const charset_list_t charset_list_default = { "Default",  NULL };
98
 
charset_t *charset_list=(charset_t*)charset_list_default;
99
 
#define autocharset_list_ni_default 1
100
 
autocharset_list_t autocharset_list_default = {
101
 
    {"Off", NULL, {NULL}}
102
 
};
103
 
 
104
 
int autocharset_list_ni=autocharset_list_ni_default;
105
 
autocharset_t *autocharset_list=(autocharset_t*)autocharset_list_default;
106
 
*/
 
 
b'\\ No newline at end of file'