summaryrefslogtreecommitdiffstats
path: root/src/librcc.h
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@dside.dyndns.org>2005-07-24 01:47:52 +0000
committerSuren A. Chilingaryan <csa@dside.dyndns.org>2005-07-24 01:47:52 +0000
commitcfaef1b6c9f33fbaa114628cf513d129bdff3c1c (patch)
treeb5207f980062d0aaaa2515f76983f5386408a298 /src/librcc.h
parentcd75d05e2a72eff41d6eedb61bc89ca2e1cd185d (diff)
downloadlibrcc-cfaef1b6c9f33fbaa114628cf513d129bdff3c1c.tar.gz
librcc-cfaef1b6c9f33fbaa114628cf513d129bdff3c1c.tar.bz2
librcc-cfaef1b6c9f33fbaa114628cf513d129bdff3c1c.tar.xz
librcc-cfaef1b6c9f33fbaa114628cf513d129bdff3c1c.zip
Fixes
- Dummy UI plugin - GTK2 UI plugin - Fixed typo: 'const rcc_string' -> 'rcc_const_string' - Fix: Disable BDB recoding in case if recoding switched off
Diffstat (limited to 'src/librcc.h')
-rw-r--r--src/librcc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librcc.h b/src/librcc.h
index 6b28813..a70d6df 100644
--- a/src/librcc.h
+++ b/src/librcc.h
@@ -952,7 +952,7 @@ rcc_string rccSizedFrom(rcc_context ctx, rcc_class_id class_id, const char *buf,
* @param rlen in rlen the size of recoded string will be returned.
* @result is recoded string or NULL if recoding is not required or failed. It is up to the caller to free memory.
*/
-char *rccSizedTo(rcc_context ctx, rcc_class_id class_id, const rcc_string buf, size_t *rlen);
+char *rccSizedTo(rcc_context ctx, rcc_class_id class_id, rcc_const_string buf, size_t *rlen);
/**
* Recode string between different encoding classes. The conversion is relays on rccSizedFrom
* and rccSizedTo functions.
@@ -1008,7 +1008,7 @@ rcc_string rccSizedFromCharset(rcc_context ctx, const char *charset, const char
* @param rlen in rlen the size of recoded string will be returned.
* @result is recoded string or NULL if recoding is not required or failed. It is up to the caller to free memory.
*/
-char *rccSizedToCharset(rcc_context ctx, const char *charset, const rcc_string buf, size_t *rlen);
+char *rccSizedToCharset(rcc_context ctx, const char *charset, rcc_const_string buf, size_t *rlen);
/**
* Recode string between specified encoding class and encoding.
*
@@ -1023,7 +1023,7 @@ char *rccSizedToCharset(rcc_context ctx, const char *charset, const rcc_string b
* @param rlen in rlen the size of recoded string will be returned.
* @result is recoded string or NULL if recoding is not required or failed. It is up to the caller to free memory.
*/
-char *rccSizedRecodeToCharset(rcc_context ctx, rcc_class_id class_id, const char *charset, const rcc_string buf, size_t len, size_t *rlen);
+char *rccSizedRecodeToCharset(rcc_context ctx, rcc_class_id class_id, const char *charset, rcc_const_string buf, size_t len, size_t *rlen);
/**
* Recode string between specified encoding and encoding class.
*