📄 pop3.c
字号:
/******************************************************************************
Copyright (C) 2005 UTStarcom (Hangzhou) Telecom Co., Ltd.
All rights reserved.
Contains confidential proprietary information of UTStarcom, Inc.
Reverse engineering is prohibited.
The copyright notice does not imply publication.
Project Name:
Project No. :
File Name : Pop3.c
Module : Email
Description :
************** REVISION HISTORY *******************************************
Date Author Reference
=========== ========== ==========================
2005-06-13 TangJun
******************************************************************************/
#include "pop3.h"
/* the structure of POP3 data(Protocol ==> MMI) */
EMAIL_POP3_ENTITY pop3_mail;
/* the structure of the status receiving the mail (Protocol ==> MMI) */
EMAIL_ERROR_TYPE pop3_err = EMAIL_SUCCESSFUL;
/******************************************************************************************
* Function Name: Pop3PmResultReport
* Description : Report the result of the email receiving to MMI.
* Note : None.* * Parameter : None.
* * Return values : the result of the email saving on flash.
* * Author : Tang Jun 2005-07-25* ******************************************************************************************/EMAIL_SAVE_RESULT Pop3PmResultReport(void)
{
EMAIL_SAVE_RESULT saveResult = EMAIL_SAVE_OK;
if(pop3.cb != NULL)
{
//POP3LOG("Pop3PmResultReport!pop3_err is %xH \n",pop3_err);
saveResult = pop3.cb(&pop3_mail,&pop3_err);
}
pop3_err = EMAIL_SUCCESSFUL;
return saveResult;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -