1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __CALNOTIFICATION_H__
17 #define __CALNOTIFICATION_H__
21 /** The calendar publish and subscribe category
26 const TUid KCalPubSubCategory = { 0x10003a5b };
28 /** Used for subcribing to either todos or event changes
34 /** subscribe to todo notifications */
35 ECalPubSubTodoNotification,
36 /** subscribe to event notifications */
37 ECalPubSubEventNotification,
40 /** The publish and subscribe data
46 /** The time that the calendar change took place, in universal (UTC) time */
47 TTime iTimeOfChangeUtc;
48 /** The filename hashed into a 4-byte integer. CalInterimAPI provides a method to find the filename from this value. */
49 TUint32 iFileNameHash;
52 #endif // __CALNOTIFICATION_H__