📄 ckmailprogress.h
字号:
// CkMailProgress.h: interface for the CkMailProgress class.
//
//////////////////////////////////////////////////////////////////////
#ifndef _CkMailProgress_H
#define _CkMailProgress_H
#pragma once
/*
To receive progress events (callbacks), create a C++ class that
inherits this one and provides one or more overriding implementations
for the events you wish to receive.
*/
class CkMailProgress
{
public:
CkMailProgress();
virtual ~CkMailProgress();
virtual void SendPercentDone(long pctDone, bool *abort) { }
virtual void ReadPercentDone(long pctDone, bool *abort) { }
// Called periodically to check to see if the email sending/receiving should be aborted.
virtual void AbortCheck(bool *abort) { }
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -