equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-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 // This is the header file for ROOTSERVER common defs |
|
15 // |
|
16 // |
|
17 |
|
18 |
|
19 #if (!defined __ROOTSERVERTEST_H__) |
|
20 #define __ROOTSERVERTEST_H__ |
|
21 |
|
22 // special values for InitDelay |
|
23 #define EXIT_BEFORE_RENDEZVOUS (-1) |
|
24 #define PANIC_BEFORE_RENDEZVOUS (-2) |
|
25 #define PANIC_AFTER_RENDEZVOUS (-3) |
|
26 |
|
27 #define NO_PREMATURE_DEATH (-1) |
|
28 |
|
29 |
|
30 typedef struct t_TestModuleIniData |
|
31 { |
|
32 TInt iInitDelay; |
|
33 TInt iDeathDelay; |
|
34 TInt iDiscoveryDelay; |
|
35 TInt iBindDelay; |
|
36 TInt iUnbindDelay; |
|
37 TInt iShutdownDelay; |
|
38 } TTestModuleIniDataContainer; |
|
39 |
|
40 class TTestModuleIniData : public TPckg<TTestModuleIniDataContainer> |
|
41 { |
|
42 public: |
|
43 TTestModuleIniData():TPckg<TTestModuleIniDataContainer>(iParams) {}; |
|
44 public: |
|
45 TTestModuleIniDataContainer iParams; |
|
46 }; |
|
47 |
|
48 |
|
49 #endif //(__ROOTSERVERTEST_H__) |
|
50 |