equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-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 #include "imageprocessormain.h" |
|
17 |
|
18 _LIT(KIPPanicCategory, "ImageProcessor"); |
|
19 |
|
20 /** |
|
21 This function raises a panic |
|
22 |
|
23 @param aError |
|
24 one of the several panics codes that may be raised by this dll |
|
25 |
|
26 @panic EPanicNotInitialized is raised when the imageprocessor is not initialized. |
|
27 @panic EPanicProgressInfoNotAvailable is raised when the progress info is required but the |
|
28 state of the imageprocessor is EUninitialized or EInitializing. |
|
29 */ |
|
30 GLDEF_C void Panic(TIPPanic aError) |
|
31 { |
|
32 User::Panic(KIPPanicCategory, aError); |
|
33 } |
|
34 |