diff -r 000000000000 -r 83f4b4db085c toolsandutils/buildsystem/test/binaryvariation/InvariantStaticDLL.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toolsandutils/buildsystem/test/binaryvariation/InvariantStaticDLL.cpp Tue Feb 02 01:39:43 2010 +0200 @@ -0,0 +1,62 @@ +// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "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: +// This program creates a dll. +// +// + +#include "InvariantStaticDLL.h" +#include + +// construct/destruct + +EXPORT_C CInvMessenger* CInvMessenger::NewLC(CConsoleBase& aConsole, const TDesC& aString) + { + CInvMessenger* self=new (ELeave) CInvMessenger(aConsole); + CleanupStack::PushL(self); + self->ConstructL(aString); + return self; + } + +CInvMessenger::~CInvMessenger() // destruct - virtual, so no export + { + delete iString; + } + +// useful functions + +EXPORT_C void CInvMessenger::ShowMessage() + { + _LIT(KFormat1,"FEATURE INVARIANT %S\n"); + iConsole.Printf(KFormat1, iString); // notify completion + } + +// constructor support +// don't export these, because used only by functions in this DLL, eg our NewLC() + +CInvMessenger::CInvMessenger(CConsoleBase& aConsole) // first-phase C++ constructor + : iConsole(aConsole) + { + } + +void CInvMessenger::ConstructL(const TDesC& aString) // second-phase constructor + { + iString=aString.AllocL(); // copy given string into own descriptor + } + + +GLDEF_C TInt E32Dll(TInt /*aReason*/) +// DLL entry point + { + return(KErrNone); + }