RTF_WCSRETINFO

Applies to: Outlook 2013 | Outlook 2016

This structure provides information about a stream in native format returned from decompressing the body of a message that is encapsulated in compressed Rich Text Format (RTF).

Quick info

typedef struct { 
    ULONG size;    
    ULONG ulStreamFlags; 
} RTF_WCSRETINFO;

Members

size

The size of the RTF_WCSRETINFO structure in number of bytes.

ulStreamFlags

This is a value that indicates the format of the native body. This value is only valid if the MAPI_NATIVE_BODY flag is passed in the ulFlags parameter of the RTF_WCSINFO structure that is passed to the WrapCompressedRTFStreamEx function. This can be one of the following values:

Value Description
MAPI_NATIVE_BODY_TYPE_RTF
This value is only used if ulFlags includes the MAPI_NATIVE_BODY flag, and the body is RTF.
MAPI_NATIVE_BODY_TYPE_PLAIN_TEXT
This value is only used if ulFlags includes the MAPI_NATIVE_BODY flag, and the body is plain text format.
MAPI_NATIVE_BODY_TYPE_HTML
This value is only used if ulFlags includes the MAPI_NATIVE_BODY flag, and the body is Hypertext Markup Language (HTML) format.

See also