author | William Roberts <williamr@symbian.org> |
Wed, 31 Mar 2010 12:33:34 +0100 | |
branch | Symbian3 |
changeset 4 | 837f303aceeb |
parent 3 | e1b950c65cb4 |
permissions | -rw-r--r-- |
williamr@2 | 1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
williamr@2 | 2 |
// All rights reserved. |
williamr@2 | 3 |
// This component and the accompanying materials are made available |
williamr@4 | 4 |
// under the terms of "Eclipse Public License v1.0" |
williamr@2 | 5 |
// which accompanies this distribution, and is available |
williamr@4 | 6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
williamr@2 | 7 |
// |
williamr@2 | 8 |
// Initial Contributors: |
williamr@2 | 9 |
// Nokia Corporation - initial contribution. |
williamr@2 | 10 |
// |
williamr@2 | 11 |
// Contributors: |
williamr@2 | 12 |
// |
williamr@2 | 13 |
// Description: |
williamr@2 | 14 |
// |
williamr@2 | 15 |
|
williamr@2 | 16 |
#ifndef __CCALDATAFORMAT_H__ |
williamr@2 | 17 |
#define __CCALDATAFORMAT_H__ |
williamr@2 | 18 |
|
williamr@2 | 19 |
#include <e32cmn.h> |
williamr@2 | 20 |
|
williamr@2 | 21 |
/** |
williamr@2 | 22 |
@file |
williamr@2 | 23 |
@publishedAll |
williamr@2 | 24 |
@released */ |
williamr@2 | 25 |
|
williamr@2 | 26 |
/** The UID for a VCal 1.0 data parser |
williamr@2 | 27 |
Used in vCalendar Import. */ |
williamr@2 | 28 |
const TUid KUidVCalendar = {0x1020DB7B}; |
williamr@2 | 29 |
|
williamr@2 | 30 |
|
williamr@2 | 31 |
/** These flags control the behaviour of the data exchange parser.*/ |
williamr@2 | 32 |
/** This flag overrides the default character set when parsing |
williamr@2 | 33 |
vCalendar 1.0 files to Shift-JIS */ |
williamr@2 | 34 |
const TUint32 KCalDataExchangeDefaultShiftJIS = 0x00000001; |
williamr@2 | 35 |
|
williamr@2 | 36 |
/** This flag ensures that the STATUS property of an imported vCalendar |
williamr@2 | 37 |
will map to the CCalEntry::TStatus value with exactly the same name. */ |
williamr@2 | 38 |
const TUint32 KCalDataExchangeImportStatusAsVCalendar = 0x00000002; |
williamr@2 | 39 |
|
williamr@2 | 40 |
#endif // __CCALDATAFORMAT_H__ |