fa84ff9eb1
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9017 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
465 B
C++
19 lines
465 B
C++
#ifndef ZOIDBERG_MAIL_DAEMON_H
|
|
#define ZOIDBERG_MAIL_DAEMON_H
|
|
/* Daemon - talking to the mail daemon
|
|
**
|
|
** Copyright 2001 Dr. Zoidberg Enterprises. All rights reserved.
|
|
*/
|
|
|
|
class BMailDaemon {
|
|
public:
|
|
static status_t CheckMail(bool send_queued_mail = true,const char *account = NULL);
|
|
static status_t SendQueuedMail();
|
|
static int32 CountNewMessages(bool wait_for_fetch_completion = false);
|
|
|
|
static status_t Quit();
|
|
};
|
|
|
|
#endif /* ZOIDBERG_MAIL_DAEMON_H */
|
|
|