|
1 /* |
|
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Opearation code definitions |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef ESMRICALVIEWERDEFS_HRH |
|
20 #define ESMRICALVIEWERDEFS_HRH |
|
21 |
|
22 #define KESMRICALVIEWERIMPLEMENTATIONUID 0x2001846D |
|
23 /** |
|
24 * Attendee status definition |
|
25 */ |
|
26 enum TESMRAttendeeStatus |
|
27 { |
|
28 EESMRAttendeeStatusUnknown, // MR is accepted |
|
29 EESMRAttendeeStatusAccept, // MR is accepted |
|
30 EESMRAttendeeStatusTentative, // MR is tentatively accepted |
|
31 EESMRAttendeeStatusDecline // MR is declined |
|
32 }; |
|
33 |
|
34 /** |
|
35 * Enumeration for meeting request method |
|
36 */ |
|
37 enum TESMRMeetingRequestMethod |
|
38 { |
|
39 // MR method is unknown |
|
40 EESMRMeetingRequestMethodUnknown = 0, |
|
41 // MR request method |
|
42 EESMRMeetingRequestMethodRequest, |
|
43 // MR response method |
|
44 EESMRMeetingRequestMethodResponse, |
|
45 // MR cancellation method |
|
46 EESMRMeetingRequestMethodCancellation |
|
47 }; |
|
48 |
|
49 //<cmail> |
|
50 #include "esmricalvieweropcodes.hrh" |
|
51 //</cmail> |
|
52 |
|
53 #endif // MESMRICALVIEWERDEFS_HRH |
|
54 |
|
55 // End of file |