equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: header file for DCMO ClientServer |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __DCMOCLIENTSERVER_H__ |
|
19 #define __DCMOCLIENTSERVER_H__ |
|
20 |
|
21 #include <e32std.h> |
|
22 |
|
23 #define KStarterUid 0x2000D75B |
|
24 |
|
25 _LIT(KDCMOServerName, "dcmoserver"); |
|
26 const TUid KDCMOServerUid={0x200100CA}; |
|
27 |
|
28 const TUint KDCMOServerMajorVersionNumber=1; |
|
29 const TUint KDCMOServerMinorVersionNumber=0; |
|
30 const TUint KDCMOServerBuildVersionNumber=0; |
|
31 const TUint KDCMOServerMessageSlotNumber=2; |
|
32 |
|
33 enum TDCMOOperation |
|
34 { |
|
35 EDcmoGetAttrInt, // any client can Get |
|
36 EDcmoGetAttrStr, |
|
37 EDcmoSetAttrInt, // Set only for DiskAdmin |
|
38 EDcmoSetAttrStr, |
|
39 EDcmoSearchAdapter |
|
40 }; |
|
41 |
|
42 #endif// __DCMOCLIENTSERVER_H__ |