author | Sebastian Brannstrom <sebastianb@symbian.org> |
Tue, 16 Nov 2010 10:39:20 +0000 | |
branch | symbian1 |
changeset 364 | 998e9d114bd5 |
parent 336 | 3d6c1417e8bd |
permissions | -rw-r--r-- |
60 | 1 |
/* |
2 |
* Copyright (c) 2010 Sebastian Brannstrom |
|
3 |
* |
|
4 |
* All rights reserved. |
|
5 |
* This component and the accompanying materials are made available |
|
6 |
* under the terms of the License "Eclipse Public License v1.0" |
|
7 |
* which accompanies this distribution, and is available |
|
8 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 |
* |
|
10 |
* Initial Contributors: |
|
11 |
* EmbedDev AB - initial contribution. |
|
12 |
* |
|
13 |
* Contributors: |
|
14 |
* |
|
15 |
* Description: |
|
16 |
* |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef __PODCATCHER_PAN__ |
|
20 |
#define __PODCATCHER_PAN__ |
|
21 |
||
22 |
enum TPodcatcherPanics |
|
23 |
{ |
|
24 |
EPodcatcherPanicDB = 1, |
|
25 |
EPodcatcherPanicAlreadyActive, |
|
26 |
EPodcatcherPanicFeedEngineState, |
|
336
3d6c1417e8bd
Merged all the later Symbian3 updates into Symbian1 branch; new SIS v. 1.00.32
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
27 |
EPodcatcherPanicFeedView, |
3d6c1417e8bd
Merged all the later Symbian3 updates into Symbian1 branch; new SIS v. 1.00.32
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
28 |
EPodcatcherDownloadDrive |
60 | 29 |
}; |
30 |
||
31 |
||
32 |
inline void Panic(TPodcatcherPanics aReason) |
|
33 |
{ |
|
34 |
_LIT(applicationName,"Podcatcher"); |
|
35 |
User::Panic(applicationName, aReason); |
|
36 |
} |
|
37 |
||
38 |
#endif |