summaryrefslogtreecommitdiff
path: root/src/charset/codecs/codec_impl.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-08 23:08:30 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-08 23:08:30 +0000
commite53a5011237467c73c72b338570e4a455d2d1ef6 (patch)
tree1f580e130a9985f98c0fd6efb88f2c1071b1a7ca /src/charset/codecs/codec_impl.h
parent7836409aade83179b43dd7ad0699d9edf68aad90 (diff)
downloadlibparserutils-e53a5011237467c73c72b338570e4a455d2d1ef6.tar.gz
libparserutils-e53a5011237467c73c72b338570e4a455d2d1ef6.tar.bz2
Return errors from constructors and destructors.
svn path=/trunk/libparserutils/; revision=5652
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