Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __CALNOTIFICATION_H__
17 #define __CALNOTIFICATION_H__
19 /** The calendar publish and subscribe category
24 const TUid KCalPubSubCategory = { 0x10003a5b };
26 /** Used for subcribing to either todos or event changes
32 /** subscribe to todo notifications */
33 ECalPubSubTodoNotification,
34 /** subscribe to event notifications */
35 ECalPubSubEventNotification,
38 /** The publish and subscribe data
44 /** The time that the calendar change took place, in universal (UTC) time */
45 TTime iTimeOfChangeUtc;
46 /** The filename hashed into a 4-byte integer. CalInterimAPI provides a method to find the filename from this value. */
47 TUint32 iFileNameHash;
50 #endif // __CALNOTIFICATION_H__