Update contrib.
1 // Copyright (c) 2004-2009 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.
14 // This header file must be included in Sd_Svr.cpp. It contains platform/target dependent code.
18 #ifndef __SD_PLATDEP_H__
19 #define __SD_PLATDEP_H__
21 ////////////////////////////////////////////////////////////////////////////////////
23 typedef RProcess RDbProcess;
25 inline TInt CreateDbmsProcess(RDbProcess& aProcess)
27 return aProcess.Create(KDbsServerImg,
29 TUidType(KNullUid, KNullUid, KDbsServerUid3),
33 ////////////////////////////////////////////////////////////////////////////////////
37 inline void LoadDbmsLibraryL()
39 _LIT(KDbmsLibraryName, "EDBMS");
41 __LEAVE_IF_ERROR(lib.Load(KDbmsLibraryName, KNullDesC));
46 #define LoadDbmsLibraryL()
50 ////////////////////////////////////////////////////////////////////////////////////
54 //#define DbgPrint1(aMsg, aPrm) RDebug::Print(aMsg, aPrm)
55 //#define DbgPrint2(aMsg, aPrm1, aPrm2) RDebug::Print(aMsg, aPrm1, aPrm2)
56 #define DbgPrint1(aMsg, aPrm)
57 #define DbgPrint2(aMsg, aPrm1, aPrm2)
61 #define DbgPrint1(aMsg, aPrm)
62 #define DbgPrint2(aMsg, aPrm1, aPrm2)
66 ////////////////////////////////////////////////////////////////////////////////////
68 #endif//__SD_PLATDEP_H__