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: Camera Application Engine error simulation global functions |
|
15 * for testing (CAE_TEST_VERSION only). |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifdef CAE_TEST_VERSION |
|
21 |
|
22 #ifndef CAEENGINEIMPTESTERRORS_H |
|
23 #define CAEENGINEIMPTESTERRORS_H |
|
24 |
|
25 IMPORT_C void CaeSetMcaeseoHBufC8ImageReadyError( TInt aError ); |
|
26 |
|
27 IMPORT_C void CaeMcaeseoHBufC8ImageReadyError( TInt& aError ); |
|
28 |
|
29 IMPORT_C void CaeSetMcaesdoCFbsBitmapImageReadyError( TInt aError ); |
|
30 |
|
31 IMPORT_C void CaeMcaesdoCFbsBitmapImageReadyError( TInt& aError ); |
|
32 |
|
33 IMPORT_C void CaeSetPowerOnCompleteError( TInt aError ); |
|
34 |
|
35 IMPORT_C void CaePowerOnCompleteError( TInt& aError ); |
|
36 |
|
37 IMPORT_C void CaeSetReserveCompleteError( TInt aError ); |
|
38 |
|
39 IMPORT_C void CaeReserveCompleteError( TInt& aError ); |
|
40 |
|
41 IMPORT_C void CaeSetImageReadyError( TInt aError ); |
|
42 |
|
43 IMPORT_C void CaeImageReadyError( TInt& aError ); |
|
44 |
|
45 IMPORT_C void CaeSetMvruoOpenCompleteError( TInt aError ); |
|
46 |
|
47 IMPORT_C void CaeMvruoOpenCompleteError( TInt& aError ); |
|
48 |
|
49 IMPORT_C void CaeSetMvruoPrepareCompleteError( TInt aError ); |
|
50 |
|
51 IMPORT_C void CaeMvruoPrepareCompleteError( TInt& aError ); |
|
52 |
|
53 IMPORT_C void CaeSetMvruoRecordCompleteError( TInt aError ); |
|
54 |
|
55 IMPORT_C void CaeMvruoRecordCompleteError( TInt& aError ); |
|
56 |
|
57 IMPORT_C void CaeSetPrepareVideoSettingsError( TInt aError ); |
|
58 |
|
59 IMPORT_C void CaePrepareVideoSettingsErrorL(); |
|
60 |
|
61 IMPORT_C void CaeSetCreateAndDeliverSnapImageError( TInt aError ); |
|
62 |
|
63 IMPORT_C void CaeCreateAndDeliverSnapImageError( TInt& aError ); |
|
64 |
|
65 IMPORT_C void CaeSetCreateAndDeliverStillImageError( TInt aError ); |
|
66 |
|
67 IMPORT_C void CaeCreateAndDeliverStillImageError( TInt& aError ); |
|
68 |
|
69 #endif // CAEENGINEIMPTESTERRORS_H |
|
70 |
|
71 #endif // #ifdef CAE_TEST_VERSION |
|