Base64 vc处理方法,邮件格式~~~

Call this function to base64-encode some data.

inline BOOL Base64Encode(
   const BYTE* pbSrcData,
   int nSrcLen,
   LPSTR szDest,
   int* pnDestLen,
   DWORD dwFlags = ATL_BASE64_FLAG_NONE 
) throw( );

Parameters

pbSrcData
The buffer containing the data to be encoded.
nSrcLen
The length in bytes of the data to be encoded.
szDest
Caller-allocated buffer to receive the encoded data.
pnDestLen
Pointer to a variable that contains the length in characters of szDest. If the function succeeds, the variable receives the number of characters written to the buffer. If the function fails, the variable receives the required length in characters of the buffer.
dwFlags
Flags describing how the conversion is to be performed. See ATL_BASE64 Flags.

Return Value

Returns TRUE on success, FALSE on failure.

可以处理邮件B格式~~~

你可能感兴趣的:(base64)