equal
deleted
inserted
replaced
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 // All rights reserved. |
2 // All rights reserved. |
3 // This component and the accompanying materials are made available |
3 // This component and the accompanying materials are made available |
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
4 // under the terms of "Eclipse Public License v1.0" |
5 // which accompanies this distribution, and is available |
5 // which accompanies this distribution, and is available |
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
7 // |
7 // |
8 // Initial Contributors: |
8 // Initial Contributors: |
9 // Nokia Corporation - initial contribution. |
9 // Nokia Corporation - initial contribution. |
10 // |
10 // |
11 // Contributors: |
11 // Contributors: |
18 |
18 |
19 #include <e32std.h> |
19 #include <e32std.h> |
20 #include <e32base.h> |
20 #include <e32base.h> |
21 #include <f32file.h> |
21 #include <f32file.h> |
22 |
22 |
|
23 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS |
|
24 #include <uikon/eikscchange.h> |
|
25 #endif |
|
26 |
23 /** Defines the second Uid value for plug in notifier DLLs. |
27 /** Defines the second Uid value for plug in notifier DLLs. |
24 |
28 |
25 @publishedAll |
29 @publishedAll |
26 @released */ |
30 @released */ |
27 const TUid KUidNotifierPlugIn = {0x10005522}; |
31 const TUid KUidNotifierPlugIn = {0x10005522}; |
34 enum TEikNotExtStatus |
38 enum TEikNotExtStatus |
35 { |
39 { |
36 EEikNotExtRequestCompleted = 0, |
40 EEikNotExtRequestCompleted = 0, |
37 EEikNotExtRequestQueued = 1 |
41 EEikNotExtRequestQueued = 1 |
38 }; |
42 }; |
39 |
|
40 /** The Uid that identifies a screen change event. |
|
41 |
|
42 @see MEikSrvNotifierBase2::HandleSystemEventL() |
|
43 @internalTechnology */ |
|
44 const TUid KUidEventScreenModeChanged = {0x101F3648}; |
|
45 |
43 |
46 /** A set of flags that define the capabilities of the notifier. |
44 /** A set of flags that define the capabilities of the notifier. |
47 |
45 |
48 Capabilities are returned by calling MEikSrvNotifierBase2::NotifierCapabilites(). |
46 Capabilities are returned by calling MEikSrvNotifierBase2::NotifierCapabilites(). |
49 |
47 |