X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=libcitadel%2Flib%2Flibcitadel.h;h=3f03bef474f471e567b3e966ffa18704f6059bca;hb=196725f0655a885478a2a8d3733a40f65401af89;hp=fc14796a739ba3d7b6ae9c52f02a186b8723ef27;hpb=6a6e51e64721f9f8ea88272d75a6a25ea6223543;p=citadel.git diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index fc14796a7..3f03bef47 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -26,7 +26,7 @@ #include #include -#define LIBCITADEL_VERSION_NUMBER 936 +#define LIBCITADEL_VERSION_NUMBER 955 /* * Here's a bunch of stupid magic to make the MIME parser portable. @@ -311,8 +311,8 @@ void StrBuf_RFC822_2_Utf8(StrBuf *Target, void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset); typedef enum __eStreamType { - eBase64Encode, - eBase64Decode, + //eBase64Encode, + //eBase64Decode, eZLibEncode, eZLibDecode, eEmtyCodec @@ -405,7 +405,7 @@ long extract_long (const char *source, int parmnum); unsigned long extract_unsigned_long(const char *source, int parmnum); void CtdlInitBase64Table(void); size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks); -int CtdlDecodeBase64(char *dest, const char *source, size_t length); +size_t CtdlDecodeBase64(char *dest, const char *source, size_t length); unsigned int decode_hex(char *Source); int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen); void StripSlashes(char *Dir, int TrailingSlash);