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 // |
|
15 |
|
16 #ifndef __SSMLOADAMASTART_H__ |
|
17 #define __SSMLOADAMASTART_H__ |
|
18 |
|
19 #include <e32base.h> |
|
20 |
|
21 /** |
|
22 Shim dll used to remove the dependency of loadamastart.dll which is common symbian component |
|
23 on the amastart.dll which is optional replaceable. loadamastart.dll will load amastart.dll. |
|
24 |
|
25 See CLoadAmaStart in the sysstart component. |
|
26 |
|
27 @internalTechnology |
|
28 @released |
|
29 */ |
|
30 class CSsmLoadAmaStart: public CBase |
|
31 { |
|
32 public: |
|
33 virtual void StartL(const TUid aDscId) = 0; |
|
34 virtual void Start(const TUid aDscId, TRequestStatus& aRequestStatus) = 0; |
|
35 virtual void StartCancel() = 0; |
|
36 }; |
|
37 |
|
38 #endif // __SSMLOADAMASTART_H__ |