|
1 /* |
|
2 * Copyright (c) 2006 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: Communicates message data to SendUILauncher server application |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #include <aknappui.h> |
|
21 #include <AknServerApp.h> |
|
22 #include <s32mem.h> |
|
23 |
|
24 #include <CMessageData.h> |
|
25 #include <SendUiConsts.h> |
|
26 |
|
27 #include "senduiserviceclient.h" |
|
28 #include "senduiserviceslog.h" |
|
29 #include "senduilauncher.h" |
|
30 #include "senduiservicecommands.h" |
|
31 |
|
32 typedef TBuf8<KTransferBufferSize> TTransferBuf; |
|
33 // ======== LOCAL FUNCTIONS ======== |
|
34 |
|
35 // --------------------------------------------------------------------------- |
|
36 // Launch SendUi |
|
37 // --------------------------------------------------------------------------- |
|
38 // |
|
39 void RSendUiServiceClient::LaunchSendUiL( |
|
40 TUid& aServiceUid, |
|
41 TUid& aServiceProviderUid, |
|
42 TBool& aLaunchEmbedded, |
|
43 const CMessageData* aMessageData ) |
|
44 { |
|
45 } |
|
46 |
|
47 // --------------------------------------------------------------------------- |
|
48 // Return service identifier |
|
49 // --------------------------------------------------------------------------- |
|
50 // |
|
51 TUid RSendUiServiceClient::ServiceUid() const |
|
52 { |
|
53 } |
|
54 |
|
55 // --------------------------------------------------------------------------- |
|
56 // Destructor |
|
57 // --------------------------------------------------------------------------- |
|
58 // |
|
59 RSendUiServiceClient::~RSendUiServiceClient() |
|
60 { |
|
61 } |