24
|
1 |
// Copyright (c) 2007-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 __SSMADAPTATIONCLI_H__
|
|
17 |
#define __SSMADAPTATIONCLI_H__
|
|
18 |
|
|
19 |
/** @file
|
|
20 |
@internalComponent
|
|
21 |
@test
|
|
22 |
*/
|
|
23 |
|
|
24 |
#include <e32std.h>
|
|
25 |
#include <e32svr.h>
|
|
26 |
|
|
27 |
class RSsmEmergencyCallRfAdaptation
|
|
28 |
{
|
|
29 |
|
|
30 |
public:
|
|
31 |
IMPORT_C static void InitializeLibL();
|
|
32 |
IMPORT_C static void UnInitializeLib();
|
|
33 |
|
|
34 |
IMPORT_C TInt Connect();
|
|
35 |
IMPORT_C TInt Connect(TInt aAsyncMessageSlotCount);
|
|
36 |
IMPORT_C void ActivateRfForEmergencyCall(TRequestStatus& aStatus);
|
|
37 |
IMPORT_C void DeactivateRfForEmergencyCall(TRequestStatus& aStatus);
|
|
38 |
IMPORT_C void Close();
|
|
39 |
IMPORT_C void Cancel();
|
|
40 |
|
|
41 |
private:
|
|
42 |
TRequestStatus iRequestStatus;
|
|
43 |
};
|
|
44 |
|
|
45 |
|
|
46 |
#endif // __SSMSUSCLI_H__
|