equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-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: BT HID Server Panic codes |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __BTHIDSERVER_PAN__ |
|
19 #define __BTHIDSERVER_PAN__ |
|
20 |
|
21 //Panic Category |
|
22 _LIT(KBTHIDServer, "BTHIDServer"); |
|
23 |
|
24 /*! Server panic codes */ |
|
25 enum TBTHIDServPanic |
|
26 { |
|
27 EBadRequest = 1, |
|
28 EBadDescriptor = 2, |
|
29 ESrvCreateServer = 3, |
|
30 EMainSchedulerError = 4, |
|
31 ECreateTrapCleanup = 5, |
|
32 ESrvSessCreateTimer = 6, |
|
33 EReqAlreadyPending = 7, |
|
34 EInvalidHandle = 8, |
|
35 EBadState = 9, |
|
36 ENotifierAlreadyActive = 10, |
|
37 }; |
|
38 |
|
39 #endif // __BTHIDSERVER_PAN__ |