// M_CTRL.CPP
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#include <e32uid.h>
#include <e32base.h>
#include <e32test.h>
#include <apgctl.h>

const TInt KMinimalControlUidValue=98;

GLDEF_C TInt E32Dll(TDllReason /*aReason*/)
// DLL entry point
//
	{
	return KErrNone;
	}


EXPORT_C void CreateControlL(const TDesC& aPath)
// The ordinal 1 export
//
	{
	RTest test(_L("Minimal system control"));
	test.Title();
	test.Start(_L("The Minimal system control has been executed."));
	test.Printf(_L("\n"));
	test.Printf(aPath);
	test.Printf(_L("\n"));
	test.End();
	test.Close();
	}

