sl@0: // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __SQLSRVSTARTUP_H__ sl@0: #define __SQLSRVSTARTUP_H__ sl@0: sl@0: #include //TInt, TVersion sl@0: sl@0: //SqlDb server name sl@0: _LIT(KSqlSrvName, "!SQL Server"); sl@0: sl@0: //SQL server image name sl@0: _LIT(KSqlSrvImg, "SqlSrv"); sl@0: sl@0: //SQL server: major version number, minor version number, build number constants. sl@0: const TInt KSqlMajorVer = 1; sl@0: const TInt KSqlMinorVer = 1; sl@0: const TInt KSqlBuildVer = 0; sl@0: sl@0: const TUid KSqlSrvUid3 = {0x10281E17};//The same UID is in SqlSrv.mmp file sl@0: sl@0: /** sl@0: @return SQL server version. sl@0: sl@0: @internalComponent sl@0: */ sl@0: inline TVersion SqlSrvVersion() sl@0: { sl@0: return TVersion(KSqlMajorVer, KSqlMinorVer, KSqlBuildVer); sl@0: } sl@0: sl@0: TInt StartSqlServer(); sl@0: sl@0: #endif //__SQLSRVSTARTUP_H__