|
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __IMAGECLIENTMAIN_H__ |
|
17 #define __IMAGECLIENTMAIN_H__ |
|
18 |
|
19 #include <e32std.h> |
|
20 |
|
21 enum TIclPanic |
|
22 { |
|
23 ENoSourceBitmap = 0, |
|
24 ENoDestinationBitmap = 1, |
|
25 EResetDestinationBitmap = 2, |
|
26 EConvertCalledWhileBusy = 3, |
|
27 EIllegalContinueConvert = 4, |
|
28 EDifferentDestinationBitmap = 5, |
|
29 EDifferentDestinationMask = 6, |
|
30 EModifiedDestination = 7, |
|
31 EBitmapHasZeroDimension = 8, |
|
32 ENoBitmapMask = 9, |
|
33 EFrameNumberOutOfRange = 10, |
|
34 EUndefinedSourceType = 11, |
|
35 ECommentsNotSupported = 12, |
|
36 EHeaderProcessingNotComplete = 13, |
|
37 ECommentNumberOutOfRange = 14, |
|
38 EBadDisplayMode = 15, |
|
39 EUnknownHeaderState = 16, |
|
40 ENonNullDescriptorPassed = 17, |
|
41 EUndefinedMIMEType = 18, |
|
42 EIllegalImageSubType = 19, |
|
43 EIllegalImageType = 20, |
|
44 EIllegalEncoderRestart = 21, |
|
45 EChangeOptionWhileDecoding = 22, |
|
46 EDecoderNotCreated = 23, |
|
47 EFeatureNotYetImplemented = 24, |
|
48 ERelaySubThreadPanicTimedOut = 25, |
|
49 EInvalidThreadState = 26, |
|
50 EInvalidFunctionLeave = 27, |
|
51 EInvalidState = 28, |
|
52 EDriveNotSupported = 29, |
|
53 EReservedCall = 30, |
|
54 EInvalidIndex = 31, |
|
55 EInvalidValue = 32, |
|
56 #if defined(SYMBIAN_ENABLE_ENCODER_ASYNC_WRITES) |
|
57 EBufPoolNoMoreBuffers = 33, |
|
58 EBufPoolInvalidBuffer = 34, |
|
59 EAsyncWrtrQOverflow = 35, |
|
60 #endif |
|
61 ENullImageConvExtension = 36, |
|
62 ENonNullImageConvExtension = 37, |
|
63 EInvalidFwExtensionCall = 38, |
|
64 EExtensionAlreadySet = 39, |
|
65 EInvalidFwExtensionUid = 40, |
|
66 EFwExtensionBusy = 41 |
|
67 }; |
|
68 |
|
69 GLDEF_C void Panic(TIclPanic aError); |
|
70 |
|
71 #endif // __IMAGECLIENTMAIN_H__ |