24
|
1 |
/**
|
|
2 |
* Copyright (c) 2003-2009 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:
|
|
15 |
* This file contains panic codes for PSD AGX specific panics
|
|
16 |
*
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
/**
|
|
23 |
@file PSDPanic.H
|
|
24 |
@internalComponent
|
|
25 |
*/
|
|
26 |
|
|
27 |
#ifndef __PSD_PANIC_H__
|
|
28 |
#define __PSD_PANIC_H__
|
|
29 |
|
|
30 |
/**
|
|
31 |
panic codes for PSD AGX specific panics
|
|
32 |
Not public panic codes
|
|
33 |
*/
|
|
34 |
enum TPsdAgt
|
|
35 |
{
|
|
36 |
EPsdBadDirection, ///< panic codes for Psd Bad Direction
|
|
37 |
EPsdObjectShouldNotRun, ///< panic codes for ObjectShouldNotRun
|
|
38 |
EPsdInvalidNtwkRegistration,///< panic codes for Invalid Network Registration
|
|
39 |
EPsdUnknownContextState, ///< panic codes for Psd Unknown Context State
|
|
40 |
EPsdExcessDataNotValid, ///< panic codes for Psd ExcessData Not Valid
|
|
41 |
EPsdNotificationNotValid, ///< panic codes for PsdNotification Not Valid
|
|
42 |
EPsdModeUnsupported ///< panic codes for PsdMode Unsupported
|
|
43 |
};
|
|
44 |
|
|
45 |
/**
|
|
46 |
PSD AGX specific panics
|
|
47 |
|
|
48 |
@param aPanic
|
|
49 |
*/
|
|
50 |
GLDEF_C void PanicAgt(TPsdAgt aPanic);
|
|
51 |
|
|
52 |
|
|
53 |
#endif
|