Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #define FILE_ID 0x594D555D
24 TInt LoadDriver(const TDesC& aName, TBool aPdd)
26 TBuf<128> filename=aName;
30 filename.Append(KLitPdd);
31 rv = User::LoadPhysicalDevice(filename);
35 filename.Append(KLitLdd);
36 rv = User::LoadLogicalDevice(filename);
38 if (rv==KErrAlreadyExists)
43 GLDEF_C void Printf(TRefByValue<const TDesC> aFmt,...)
48 printBuf.AppendFormatList(aFmt, list);
49 printBuf.Append(TChar(0));
50 RDebug::Print(printBuf);