1.1 --- a/epoc32/include/calinterimapipanic.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,104 +0,0 @@
1.4 -// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// 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
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -/**
1.20 - @file
1.21 - @publishedAll
1.22 - @released
1.23 -*/
1.24 -
1.25 -#ifndef __CALINTERIMAPIPANIC_H__
1.26 -#define __CALINTERIMAPIPANIC_H__
1.27 -
1.28 - /**
1.29 -Panics raised from CallinterimAPI
1.30 - */
1.31 -enum TCalInterimApiPanicCode
1.32 - {
1.33 -
1.34 - /**
1.35 - Trying to create a CCalCategory object and a wrong type is passed.
1.36 - */
1.37 - EInvalidCategoryParameter = 0,
1.38 -
1.39 - /**
1.40 - Attempt to pass wrong type of TChangeEntryType.
1.41 - */
1.42 - EInvalidChangeEntryType = 1,
1.43 -
1.44 - /**
1.45 - Trying to fetch an undefined TStatus/TCalStatus of an Entry.
1.46 - */
1.47 - EInvalidEntryStatus = 2,
1.48 -
1.49 - /**
1.50 - The TType of an Entry dosen't match the standard types
1.51 - */
1.52 - EInvalidEntryType = 3,
1.53 -
1.54 - /**
1.55 - Atttempt to create an object using NULL object of type CCalEntry.
1.56 - */
1.57 - EInstanceCreatedFromNullEntry = 4,
1.58 -
1.59 - /**
1.60 - Passed invalid Recurrence Range.
1.61 - */
1.62 - EInvalidRecurrenceRangeParameter= 5,
1.63 -
1.64 - /**
1.65 - Attempt to pass a NULL object of type CCalInstance.
1.66 - */
1.67 - ENullInstanceParameter = 6,
1.68 -
1.69 - /**
1.70 - Wrong CCalEntry TType passed to API
1.71 - */
1.72 - EInvalidEntryTypeParameter = 7,
1.73 -
1.74 - /**
1.75 - Attempt to create an invalid repeat rule.
1.76 - */
1.77 - ERepeatRuleBitFailure = 8,
1.78 -
1.79 - /**
1.80 - Attempt to pass incorrect TCalRRule TType.
1.81 - */
1.82 - EInvalidRepeatRuleType = 9,
1.83 -
1.84 - /**
1.85 - Trying to set a repeat rule while one has already been set.
1.86 - */
1.87 - ERepeatRuleTypeAlreadySet = 10,
1.88 -
1.89 - /**
1.90 - Raised by the Class CCalSession's destructor if all the opened references
1.91 - have not been closed before destruction of CCalSession object.
1.92 - */
1.93 - ESessionHasOpenReferences = 11,
1.94 -
1.95 - /**
1.96 - The type of CCalAttachment is unknown.
1.97 - */
1.98 - EInvalidAttachmentType = 12,
1.99 -
1.100 - /**
1.101 - The instance iterator index is corrupt.
1.102 - */
1.103 - EInstanceIteratorIndexCorrupt = 13
1.104 -
1.105 - };
1.106 -
1.107 -#endif