kerneltest/f32test/server/t_prel.cpp
changeset 281 13fbfa31d2ba
parent 0 a41df078684a
equal deleted inserted replaced
266:0008ccd16016 281:13fbfa31d2ba
     1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     4 // under the terms of the License "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
    20 
    20 
    21 IMPORT_C void FurtiveD(TFileName &aInfo);
    21 IMPORT_C void FurtiveD(TFileName &aInfo);
    22 EXPORT_C void FurtiveD(TFileName &aInfo)
    22 EXPORT_C void FurtiveD(TFileName &aInfo)
    23 	{
    23 	{
    24 
    24 
    25 	char *dummy="Link unit for Preload test";
    25 	const char* dummy = "Link unit for Preload test";
    26 	dummy=dummy;
    26 	dummy = dummy;
    27 	TFileName name;
    27 	TFileName name;
    28 	Dll::FileName(name);
    28 	Dll::FileName(name);
    29 	aInfo.Append(name);
    29 	aInfo.Append(name);
    30 	}
    30 	}
    31 
    31