📄 base64.h
字号:
#if !defined(__BASE64_H__)
#define __BASE64_H__
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// base64.h : Declaration of the CsmtpCtrl ActiveX Control class.
void* Base64Encode(const void *lpSoure, int cbSource, void *lpDest, int cbDest);
void* Base64Encode(const void *lpSoure, int cbSource, CString &csDest);
void* Base64Encode(LPCTSTR csSource, CString &csDest);
int Base64Decode(const void *lpSoure, int cbSource, void *lpDest, int cbDest);
int QuotedPrintableDecode(char * lpSoure);
#endif // !defined(__BASE64_H__)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -