equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Camcorder controller plugin custom commands |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef CAMCCONTROLLERCUSTOMCOMMANDS_H |
|
21 #define CAMCCONTROLLERCUSTOMCOMMANDS_H |
|
22 |
|
23 // Controller UId, can be used by the client to identify the controller, e.g. if the custom command can be used |
|
24 const TUid KCamCControllerImplementationUid = {0x101F8503}; |
|
25 |
|
26 // TMMFEvent UIDs for Async stop |
|
27 const TUid KCamCControllerCCVideoRecordStopped = {0x2000E546}; |
|
28 const TUid KCamCControllerCCVideoFileComposed = {0x2000E547}; |
|
29 |
|
30 |
|
31 // Custom command for setting a new filename without closing & reopening the controller |
|
32 enum TCamCControllerCustomCommands |
|
33 { |
|
34 ECamCControllerCCNewFilename = 0, |
|
35 ECamCControllerCCVideoStopAsync |
|
36 }; |
|
37 |
|
38 #endif // CAMCCONTROLLERCUSTOMCOMMANDS_H |
|
39 // End of File |