equal
deleted
inserted
replaced
|
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 // Defines extra struct used for persisting reboots. |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef __CMDPERSISTREBOOTS_RH__ |
|
19 #define __CMDPERSISTREBOOTS_RH__ |
|
20 |
|
21 #include <ssm/cmdpersistreboots.hrh> |
|
22 |
|
23 /** |
|
24 This struct is used to pass extra information for "LLINK dll_data in SSM_START_CUSTOM_COMMAND" |
|
25 |
|
26 @publishedPartner |
|
27 @released |
|
28 @see TCustCmdPersistRebootExecuteOption |
|
29 */ |
|
30 STRUCT SSM_COMMAND_PERSIST_REBOOTS |
|
31 { |
|
32 BYTE val = EIncrementBootCount; //by default increment boot count by 1 in bootupcount.log (private/2000d75b/bootupinfo) |
|
33 } |
|
34 |
|
35 #endif // __CMDPERSISTREBOOTS_RH__ |
|
36 |