Mercurial > libpst
view src/libstrfunc.h @ 356:fec7f4fca713
From Jeffrey Morlan:
pst_parse_block returns null upon finding a property of unrecognized
type. Many PSTs contain messages with these - it should just ignore
the property, not the whole message. Again, this causes missing
emails.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 06 Jul 2016 10:15:28 -0700 |
parents | c947b8812120 |
children |
line wrap: on
line source
#ifndef __PST_LIBSTRFUNC_H #define __PST_LIBSTRFUNC_H #include "common.h" char *pst_base64_encode(void *data, size_t size); char *pst_base64_encode_single(void *data, size_t size); char *pst_base64_encode_multiple(void *data, size_t size, int *line_count); #endif