os/kernelhwsrv/kerneltest/e32test/dll/t_dlla2.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1996-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 the License "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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // e32test\dll\t_dlla2.cpp
    15 // 
    16 //
    17 
    18 #include <e32svr.h>
    19 
    20 IMPORT_C void ExportedFunction();
    21 
    22 class TDlla2
    23 	{
    24 public:
    25 	IMPORT_C TDlla2();
    26 	~TDlla2();
    27 public:
    28 	TUint32 iId;
    29 	};
    30 
    31 TInt Data2=0xd478acbb;
    32 TDlla2 DllA2;
    33 
    34 EXPORT_C TDlla2::TDlla2()
    35 	{
    36 	RDebug::Print(_L("T_DLLA2 Process Attach %08x"),Data2);
    37 	iId=RThread().Id();
    38 	RDebug::Print(_L("T_DLLA2 RThread().Id()=%08x"),iId);
    39 	ExportedFunction();
    40 	}
    41 
    42 TDlla2::~TDlla2()
    43 	{
    44 	RDebug::Print(_L("T_DLLA2 Process Detach"));
    45 	ExportedFunction();
    46 	}