Update contrib.
1 // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __SQLSRVSTARTUP_H__
17 #define __SQLSRVSTARTUP_H__
19 #include <e32std.h> //TInt, TVersion
22 _LIT(KSqlSrvName, "!SQL Server");
24 //SQL server image name
25 _LIT(KSqlSrvImg, "SqlSrv");
27 //SQL server: major version number, minor version number, build number constants.
28 const TInt KSqlMajorVer = 1;
29 const TInt KSqlMinorVer = 1;
30 const TInt KSqlBuildVer = 0;
32 const TUid KSqlSrvUid3 = {0x10281E17};//The same UID is in SqlSrv.mmp file
35 @return SQL server version.
39 inline TVersion SqlSrvVersion()
41 return TVersion(KSqlMajorVer, KSqlMinorVer, KSqlBuildVer);
44 TInt StartSqlServer();
46 #endif //__SQLSRVSTARTUP_H__