installationservices/swcomponentregistry/scrhelper/inc/scrhelpercommon.inl
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 15:21:33 +0300
branchRCL_3
changeset 25 7333d7932ef7
permissions -rw-r--r--
Revision: 201033 Kit: 201035

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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: 
* The functions defined in this file provide constant data which is
* used by both the SCR Helper server and client side implementations.
*
*/


/**
 @file
 @internalComponent
 @released
*/
 
#ifndef SCRHELPERCOMMON_INL
#define SCRHELPERCOMMON_INL

#include <usif/scr/scrcommon.h>

namespace Usif
	{
	inline TVersion ScrHelperServerVersion()
	/**
		This function is defined because there is no literal constructor for TVersion.

		@return	Defines a version number which the client side code	
				can use to open the SCR Helper server. If the client code
				was built with a higher version number, then it cannot
				open the SCR Helper server. This ensures that a client only
				talks to the SCR Helper server version is at least as high as its own.
	*/
		{
		TVersion version(KScrHelperServerVersionMajor, KScrHelperServerVersionMinor, KScrHelperServerVersionBuild);
		return version;
		}

	inline TUidType ScrHelperServerImageFullUid()
	/**
		This function is defined because there is no literal constructor
		for TUidType.  It returns the SCR Helper server executable's UID, which is used
		to ensure the client side code launches the correct server process, as opposed
		to another application which uses the same executable name.

		@return TUidType		The SCR Helper server executable's full UID.
	 */
		{
		TUidType typ(KExecutableImageUid, KNullUid, KScrHelperServerUid3);
		return typ;
		}

	} // End of namespace Usif 
	
#endif // SCRHELPERCOMMON_INL