sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef MMRCSERVERSTART_H
|
sl@0
|
17 |
#define MMRCSERVERSTART_H
|
sl@0
|
18 |
|
sl@0
|
19 |
_LIT(KMMRCServerName,"MMRCServer");
|
sl@0
|
20 |
_LIT(KMMRCServerFileName,"mmrcserver");
|
sl@0
|
21 |
|
sl@0
|
22 |
const TUid KMMRCServerUID3 = {0x102021d5};
|
sl@0
|
23 |
|
sl@0
|
24 |
const TInt KMMRCServerStackSize=0x2000; // 8KB
|
sl@0
|
25 |
const TInt KMMRCServerInitHeapSize=0x1000; // 4KB
|
sl@0
|
26 |
const TInt KMMRCServerMaxHeapSize=0x1000000; // 16MB
|
sl@0
|
27 |
|
sl@0
|
28 |
const TUint KMMRCServerVersion=1;
|
sl@0
|
29 |
const TUint KMMRCServerMinorVersionNumber=0;
|
sl@0
|
30 |
const TUint KMMRCServerBuildVersionNumber=0;
|
sl@0
|
31 |
|
sl@0
|
32 |
class TServerStart
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
TServerStart() {};
|
sl@0
|
36 |
TServerStart(TRequestStatus& aStatus);
|
sl@0
|
37 |
TPtrC AsCommand() const;
|
sl@0
|
38 |
TInt GetCommand();
|
sl@0
|
39 |
void SignalL();
|
sl@0
|
40 |
private:
|
sl@0
|
41 |
TThreadId iId;
|
sl@0
|
42 |
TRequestStatus* iStatus;
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
inline TServerStart::TServerStart(TRequestStatus& aStatus)
|
sl@0
|
46 |
:iId(RThread().Id()),iStatus(&aStatus)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
aStatus = KRequestPending;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
// Descriptorizes ’this’ to pass it from client to server
|
sl@0
|
52 |
inline TPtrC TServerStart::AsCommand() const
|
sl@0
|
53 |
{
|
sl@0
|
54 |
return TPtrC(reinterpret_cast<const TText*>(this),sizeof(TServerStart)/sizeof(TText));
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
void TServerStart::SignalL()
|
sl@0
|
58 |
{
|
sl@0
|
59 |
RThread client;
|
sl@0
|
60 |
User::LeaveIfError(client.Open(iId));
|
sl@0
|
61 |
client.RequestComplete(iStatus, KErrNone);
|
sl@0
|
62 |
client.Close();
|
sl@0
|
63 |
}
|
sl@0
|
64 |
#endif //__MMRCSERVERSTART_H
|
sl@0
|
65 |
|