equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef HARVESTERSERVERCOMMONS_H |
|
19 #define HARVESTERSERVERCOMMONS_H |
|
20 |
|
21 // INCLUDE FILES |
|
22 #include <e32base.h> |
|
23 |
|
24 // CONSTANTS |
|
25 _LIT( KHarvesterServerName,"CPixHarvesterServer" ); // Server name |
|
26 _LIT( KHarvesterServerSemaphoreName, "CPixHarvesterServerSemaphore" ); |
|
27 |
|
28 // The server version. A version must be specified when |
|
29 // creating a session with the server. |
|
30 const TUint KHarvesterServerMajorVersionNumber=1; |
|
31 const TUint KHarvesterServerMinorVersionNumber=0; |
|
32 const TUint KHarvesterServerBuildVersionNumber=0; |
|
33 |
|
34 // DATA TYPES |
|
35 /** |
|
36 * @brief Opcodes used in message passing between client and server |
|
37 */ |
|
38 enum THarvesterServerRequest |
|
39 { |
|
40 EHarvesterServerGetHarvesterCount = 1, |
|
41 EHarvesterServerGetHarvesterStatus, |
|
42 }; |
|
43 |
|
44 #endif // HARVESTERSERVERCOMMONS_H |
|
45 // End of file |