Fix for bug 5329. Added browserrootcertificates to package_definition.xml file. Also correcte the wrong spelling.
/*
* Copyright (c) 2007-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:
* Defines inline functions which provide constant data to both the
* client and server implementations.
*
*/
/**
@internalComponent
@test
@file
*/
#ifndef SCSTESTCOMMON_INL
#define SCSTESTCOMMON_INL
#include <e32uid.h>
#include "scstestcommon.h"
namespace ScsTestImpl
{
inline TVersion Version()
/**
This function is defined because there is no literal constructor for TVersion.
@return Defines a version number which the client
can use to open the server. If the client
was built with a higher version number, then
it cannot open the server. This ensures that
a client only talks to a server whose version
is at least as high as its own.
*/
{
TVersion v(KScsTestVerMajor, KScsTestVerMinor, KScsTestVerBuild);
return v;
}
inline TUidType ServerImageFullUid()
/**
This function is defined because there is no literal constructor
for TUidType. It returns the server executable's UID, which is used
to ensure the client launches the correct server process, as opposed
to another application which uses the same executable name.
@return TUidType The server executable's full UID.
*/
{
TUidType uidType(KExecutableImageUid, KNullUid, KScsTestServerUid);
return uidType;
}
}
template <class T>
inline T TAnyPtrToFuncPtr(TAny* aPtr)
/**
ISO C++ doesn't allow converting directly between object and
function pointers, so this function goes via an integer.
@param aPtr Object pointer to convert to a (static) function pointer.
@return Function pointer, where the exact type of the function is
described by the T template parameter.
*/
{
TUint32 funcAsInt = reinterpret_cast<TUint32>(aPtr);
return reinterpret_cast<T>(funcAsInt);
}
#endif // #ifndef SCSTESTCOMMON_INL