diff -r 000000000000 -r b497e44ab2fc dcmofw/inc/dcmoclientserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dcmofw/inc/dcmoclientserver.h Thu Dec 17 09:07:52 2009 +0200 @@ -0,0 +1,42 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: header file for DCMO ClientServer +* +*/ + +#ifndef __DCMOCLIENTSERVER_H__ +#define __DCMOCLIENTSERVER_H__ + +#include + +#define KStarterUid 0x2000D75B + +_LIT(KDCMOServerName, "dcmoserver"); +const TUid KDCMOServerUid={0x200100CA}; + +const TUint KDCMOServerMajorVersionNumber=1; +const TUint KDCMOServerMinorVersionNumber=0; +const TUint KDCMOServerBuildVersionNumber=0; +const TUint KDCMOServerMessageSlotNumber=2; + +enum TDCMOOperation + { + EDcmoGetAttrInt, // any client can Get + EDcmoGetAttrStr, + EDcmoSetAttrInt, // Set only for DiskAdmin + EDcmoSetAttrStr, + EDcmoSearchAdapter + }; + +#endif// __DCMOCLIENTSERVER_H__