summaryrefslogtreecommitdiff
path: root/src/charset/codecs/codec_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/charset/codecs/codec_impl.h')
-rw-r--r--src/charset/codecs/codec_impl.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/charset/codecs/codec_impl.h b/src/charset/codecs/codec_impl.h
index 9183594..09f622c 100644
--- a/src/charset/codecs/codec_impl.h
+++ b/src/charset/codecs/codec_impl.h
@@ -25,7 +25,7 @@ struct parserutils_charset_codec {
void *alloc_pw; /**< private word */
struct {
- void (*destroy)(parserutils_charset_codec *codec);
+ parserutils_error (*destroy)(parserutils_charset_codec *codec);
parserutils_error (*encode)(parserutils_charset_codec *codec,
const uint8_t **source, size_t *sourcelen,
uint8_t **dest, size_t *destlen);
@@ -41,8 +41,9 @@ struct parserutils_charset_codec {
*/
typedef struct parserutils_charset_handler {
bool (*handles_charset)(const char *charset);
- parserutils_charset_codec *(*create)(const char *charset,
- parserutils_alloc alloc, void *pw);
+ parserutils_error (*create)(const char *charset,
+ parserutils_alloc alloc, void *pw,
+ parserutils_charset_codec **codec);
} parserutils_charset_handler;
#endif