equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: Call control events |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef VTCLTDEFS_H |
|
21 #define VTCLTDEFS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32base.h> |
|
25 |
|
26 // DATA TYPES |
|
27 typedef TInt TVtCtlEvent; |
|
28 |
|
29 // CONSTANTS |
|
30 |
|
31 /** |
|
32 * Session status is changed. aParams in |
|
33 * MVtCtlEventObserver::HandleVtSessionEventL is of |
|
34 * type MVtCtlCallControl::TVtCtlState |
|
35 */ |
|
36 const TVtCtlEvent KVtCtlEventSessionStatusChanged = 1; |
|
37 |
|
38 /** |
|
39 * Session duration is changed. aParams |
|
40 * MVtCtlEventObserver::HandleVtSessionEventL is of |
|
41 * type TVtCtlDuration |
|
42 */ |
|
43 const TVtCtlEvent KVtCtlEventDurationChanged = 2; |
|
44 |
|
45 #endif // VTCLTDEFS_H |
|
46 |
|
47 // End of File |