blob: 4d467d6072cb5d7d5d9ae857a1f1ee4c2248246e (
plain)
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
|
//-----------------------------------------------------------------------------
/*
* 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: amair $
* $Date: 2007/11/22 09:01:05 $
* $Revision: 1.1 $
*/
//-----------------------------------------------------------------------------
#ifndef __AxMailBoxServiceTypes_H__
#define __AxMailBoxServiceTypes_H__
//-----------------------------------------------------------------------------
// includes
//-----------------------------------------------------------------------------
//----- C++ -------------------------------------------------------------------
//----- C ---------------------------------------------------------------------
//----- AxLib -----------------------------------------------------------------
//----- vdr -------------------------------------------------------------------
//----- local -----------------------------------------------------------------
//=============================================================================
// Service-Names (ID)
//=============================================================================
#define MailBox_HasNewMail_v1_0_NAME "MailBox-HasNewMail-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
*/
#endif
|