|
1 // Copyright (c) 2008-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 @test |
|
19 @internalComponent - Internal Symbian test code |
|
20 */ |
|
21 |
|
22 #if !defined (__TSSM_CUSTOMCMD_H__) |
|
23 #define __TSSM_CUSTOMCMD_H__ |
|
24 |
|
25 #include <e32base.h> |
|
26 |
|
27 |
|
28 _LIT(KSsmCustomCmdTest, "SsmCustomCmdTest"); |
|
29 |
|
30 enum TSsmCustomCmdTestPanic |
|
31 { |
|
32 ESsmCustomCmdTestPanic1 = 2042, |
|
33 ESsmCustomCmdTestPanic2, |
|
34 ESsmCustomCmdTestPanic3, |
|
35 ESsmCustomCmdTestPanic4 |
|
36 }; |
|
37 |
|
38 // Forward declare |
|
39 class MSsmCustomCommand; |
|
40 |
|
41 /** |
|
42 Exported test functions. |
|
43 */ |
|
44 IMPORT_C TInt TCustomCmdDllFn1(const TDesC8&); |
|
45 IMPORT_C void TCustomCmdDllFn2L(const TDesC8&); |
|
46 IMPORT_C TInt TCustomCmdDllFn3(const TDesC8&); |
|
47 IMPORT_C TInt TCustomCmdDllFn4(const TDesC8&); |
|
48 IMPORT_C MSsmCustomCommand* TCustomCmdDllFn5L(); |
|
49 IMPORT_C MSsmCustomCommand* TCustomCmdDllFn6L(); |
|
50 |
|
51 |
|
52 #endif |