kerneltest/e32test/device/d_lddns.cpp
changeset 300 1d28c8722707
equal deleted inserted replaced
293:0659d0e1a03c 300:1d28c8722707
       
     1 // Copyright (c) 2010 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\device\d_lddns.cpp
       
    15 // 
       
    16 //
       
    17 // This dummy driver is built for a negative test: although the name
       
    18 // suggests it's an LDD, it's actually a PDD; then, the test program
       
    19 // checks that it CANNOT actually be loaded as an LDD.
       
    20 
       
    21 
       
    22 #include <e32def.h>
       
    23 #include <kernel/kernel.h>
       
    24 
       
    25 DECLARE_STANDARD_PDD()
       
    26 	{
       
    27 	return NULL;
       
    28 	}
       
    29