|
1 /* |
|
2 * Copyright (c) 2002 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: BTServiceSearcher application panic codes |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __BTSERVICE_SEARCHER_PAN__ |
|
19 #define __BTSERVICE_SEARCHER_PAN__ |
|
20 |
|
21 #include <e32std.h> |
|
22 |
|
23 /** BTServiceSearcher application panic codes */ |
|
24 enum TBTServiceSearcherPanics |
|
25 { |
|
26 EBTServiceSearcherNextRecordRequestComplete = 1, |
|
27 EBTServiceSearcherAttributeRequestResult, |
|
28 EBTServiceSearcherAttributeRequestComplete, |
|
29 EBTServiceSearcherInvalidControlIndex, |
|
30 EBTServiceSearcherProtocolRead, |
|
31 EBTServiceSearcherAttributeRequest, |
|
32 EBTServiceSearcherSdpRecordDelete |
|
33 }; |
|
34 |
|
35 |
|
36 /** Panic Category */ |
|
37 _LIT(KPanicServiceSearcher, "ServiceSearcher"); |
|
38 |
|
39 |
|
40 inline void Panic(TBTServiceSearcherPanics aReason) |
|
41 { |
|
42 User::Panic(KPanicServiceSearcher, aReason); |
|
43 } |
|
44 |
|
45 #endif // __BTSERVICE_SEARCHER_PAN__ |