Defined in header file: hzMailer.h
The hzContentEncoding enumeration describes what form of text encoding is being used (in emails inter alia)
Enum definition:
enum hzContentEncoding
{
| HZ_CONTENT_ENCODE_UNDEFINED | Content encoding not defined | ||
| HZ_CONTENT_ENCODE_7BIT | Content is not encoded but chars are limited to lower ASCII | ||
| HZ_CONTENT_ENCODE_8BIT | Content is not encoded and chars may be upper ASCII | ||
| HZ_CONTENT_ENCODE_BINARY | Content is not encoded and chars may be anything | ||
| HZ_CONTENT_ENCODE_BASE64 | Content is encoded as base64 | ||
| HZ_CONTENT_ENCODE_QP | Content is encoded as 'quoted-prinatble' meaning that chars ? and = are escaped |
} ;