Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+----------------------------------------------------------------------------
// File: mime64.hxx
//
// Synopsis: This file contains MIME64 encode/decode definitions
//
//-----------------------------------------------------------------------------
#ifndef _MIME64_HXX
#define _MIME64_HXX
// Prototypes ----------------------------------------------------------------
HRESULT ProcessAttachMIME64(); HRESULT EncodeMIME64(BYTE * pbSrc, UINT cbSrc, IStream * pstmDest, ULONG * pcbWritten); HRESULT DecodeMIME64(IStream * pstmSrc, IStream * pstmDest, ULONG * pcbWritten);
#endif // _MIME64_HXX
|