equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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 * |
|
16 */ |
|
17 |
|
18 #ifndef CONSOLE_CONSTANTS_H |
|
19 #define CONSOLE_CONSTANTS_H |
|
20 |
|
21 // System includes |
|
22 #include <e32std.h> |
|
23 |
|
24 // Literal constants |
|
25 _LIT( KMemSpyConsoleNewLine, "\r\n" ); |
|
26 _LIT( KMemSpyConsoleName, "MemSpy Console" ); |
|
27 _LIT( KMemSpyConsoleInputPrompt, " > %S" ); |
|
28 _LIT( KMemSpyConsoleWildcardCharacter, "*" ); |
|
29 |
|
30 // Numerical constants |
|
31 const TInt KMemSpyMaxDisplayLengthThreadName = 48; |
|
32 const TInt KMemSpyMaxDisplayLengthSizeText = 14; |
|
33 const TInt KMemSpyMaxInputBufferLength = 200; |
|
34 |
|
35 // Key constants (S60) |
|
36 const TInt KMemSpyUiS60KeyCodeButtonOk = 2000; |
|
37 const TInt KMemSpyUiS60KeyCodeButtonCancel = 2001; |
|
38 const TInt KMemSpyUiS60KeyCodeRockerEnter = 63557; |
|
39 |
|
40 #endif |