-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAxMailBoxServiceTypes.h
50 lines (45 loc) · 1.86 KB
/
AxMailBoxServiceTypes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef __AxMailBoxServiceTypes_H__
#define __AxMailBoxServiceTypes_H__
//=============================================================================
/*
* Description: This file contains the names & types for the service-interface
*
* See the file README in the main directory for a description of
* this software, copyright information, and how to reach the author.
*
* Author: alex
* Date: 03.03.2006
*
* Last modfied:
* $Author: alex $
* $Date: 2013-03-20 20:33:18 +0100 (Mi, 20 Mär 2013) $
*/
//=============================================================================
//=============================================================================
// Service-Names (ID)
//=============================================================================
#define MailBox_HasNewMail_v1_0_NAME "MailBox-HasNewMail-1.0"
#define MailBox_GetTotalUnseen_v1_0_NAME "MailBox-GetTotalUnseen-1.0"
//=============================================================================
// service MailBox-HasNewMail-1.0
//=============================================================================
/** Ask if new mails are present
*
* The Data-parameter to cPlugin::Service() is simply a pointer to a bool
* which - on return - is
* - true if at least one mail account contains an unread mail
* - false if none of the mail accounts cotains any unread mail
*/
//=============================================================================
// service MailBox-GetTotalUnseen-1.0
//=============================================================================
/** Query the total number of unseen mails
*
* The Data-parameter to cPlugin::Service() is simply a pointer to a
* unsigned long which - on return - contains the number of unseen mails
* in all mail-accounts which
*
* - have background-check enabled
* - internal interface enabled
*/
#endif