equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006,2007 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: Contains definition for setting wakeup flag for an alarm. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __WAKEUPALARM_H__ |
|
20 #define __WAKEUPALARM_H__ |
|
21 |
|
22 #pragma message( "Wakeupalarm.h has been deprected. Please use Alarm Server API instead." ) |
|
23 |
|
24 /** |
|
25 * Index of the wakeup alarm flag, to be used with TBitFlagsT class. |
|
26 * |
|
27 * Set this flag on in ClientFlags of a TASShdAlarm to indicate that the alarm |
|
28 * is a wakeup alarm (it should wake the terminal up even if powered off). |
|
29 * |
|
30 * Example: |
|
31 * TASShdAlarm alarm; |
|
32 * alarm.ClientFlags().Set( KWakeupAlarmFlagIndex ); |
|
33 */ |
|
34 const TInt KWakeupAlarmFlagIndex = 0; |
|
35 |
|
36 #endif // __WAKEUPALARM_H__ |