26
|
1 |
/*
|
|
2 |
* Copyright (c) 2010 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 |
* Initial Contributors:
|
|
9 |
* Nokia Corporation - initial contribution.
|
|
10 |
*
|
|
11 |
* Contributors:
|
|
12 |
* Description :
|
|
13 |
*
|
|
14 |
*/
|
|
15 |
|
|
16 |
#ifndef ATMISCCMDPLUGINCONSTS_H
|
|
17 |
#define ATMISCCMDPLUGINCONSTS_H
|
|
18 |
|
|
19 |
#include <e32def.h>
|
|
20 |
|
|
21 |
_LIT8(KCRLF, "\r\n");
|
|
22 |
_LIT8(KOKCRLF, "\r\n\r\nOK\r\n");
|
|
23 |
|
|
24 |
_LIT8(KAtCLCK, "+CLCK: ");
|
|
25 |
_LIT8(KAtCFUN, "+CFUN: ");
|
|
26 |
_LIT8(KAtCBC, "+CBC: ");
|
|
27 |
_LIT8(KAtCUSD, "+CUSD: ");
|
|
28 |
|
|
29 |
_LIT8(KCLCKSupportedCmdsList, "+CLCK: (\"PS\",\"SC\",\"AO\",\"OI\",\"OX\",\"AI\",\"IR\",\"AB\",\"AG\",\"AC\")\r\n\r\nOK\r\n");
|
|
30 |
_LIT8(KCFUNSupportedCmdsList, "+CFUN: (0,1,4),(0,1)\r\n\r\nOK\r\n");
|
|
31 |
_LIT8(KCBCSupportedCmdsList, "+CBC: (0,1,2,3),(1...100)\r\n\r\nOK\r\n");
|
|
32 |
_LIT8(KCUSDSupportedCmdsList, "+CUSD: (0,1)\r\n\r\nOK\r\n");
|
|
33 |
|
|
34 |
_LIT8(KATCLCKPS, "PS");
|
|
35 |
_LIT8(KATCLCKSC, "SC");
|
|
36 |
_LIT8(KATCLCKAO, "AO");
|
|
37 |
_LIT8(KATCLCKOI, "OI");
|
|
38 |
_LIT8(KATCLCKOX, "OX");
|
|
39 |
_LIT8(KATCLCKAI, "AI");
|
|
40 |
_LIT8(KATCLCKIR, "IR");
|
|
41 |
_LIT8(KATCLCKAB, "AB");
|
|
42 |
_LIT8(KATCLCKAG, "AG");
|
|
43 |
_LIT8(KATCLCKAC, "AC");
|
|
44 |
|
32
|
45 |
// Max buffer length for an MD5 digest - originally defined in SCPServerInterface.h
|
|
46 |
const TInt KSCPMaxHashLength( 32 );
|
|
47 |
|
26
|
48 |
#endif // ATMISCCMDPLUGINCONSTS_H
|