equal
deleted
inserted
replaced
|
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalComponent - Internal Symbian test code |
|
19 */ |
|
20 |
|
21 #if !defined(__TSTARTDOC_H__) |
|
22 #define __TSTARTDOC_H__ |
|
23 |
|
24 #if !defined(__E32STD_H__) |
|
25 #include <e32std.h> |
|
26 #endif |
|
27 /** KLitLongURL must be > 256 characters long, in this case it's 259 characters long |
|
28 The name is a little mis-leading, as it's not a real URL. URL is used in the name |
|
29 because one of the use cases for needing document names longer than 256 characters |
|
30 is when starting a very long URL to be handled by a web browser application |
|
31 */ |
|
32 _LIT(KLitLongURL, "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdefXYZ"); |
|
33 |
|
34 /** KTStartDocTestPassed is a number chosen at random to be used as an exit reason |
|
35 for TStartDocApp.app's application thread to signify that the test passed |
|
36 */ |
|
37 |
|
38 const TInt KTStartDocTestPassed = 2387; |
|
39 |
|
40 #endif |
|
41 |