graphics_plat/guestvideodriver_api/inc/guestvideodrivercommon.h
branchbug235_bringup_0
changeset 146 4d1fe4a7ce83
child 153 d8f29c307082
equal deleted inserted replaced
145:8f2c3e21aac9 146:4d1fe4a7ce83
       
     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 "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 // Header file for guest video driver
       
    15 
       
    16 #ifndef __GUESTVIDEODRIVERCOMMON_H
       
    17 #define __GUESTVIDEODRIVERCOMMON_H
       
    18 
       
    19 #include <e32cmn.h>
       
    20 
       
    21 /**
       
    22  * Namespace for Platform Simulator Audio Driver.
       
    23  */
       
    24 namespace GuestVideoDriver
       
    25     {
       
    26     /**
       
    27      * Name of the DFC thread used by logical channels.
       
    28      */
       
    29     _LIT( KDfcThreadName, "DfcThreadVirtualVideoHw" );
       
    30     
       
    31     /**
       
    32      * Name of the logical device used to identify the device.
       
    33      */
       
    34     _LIT( KDeviceName, "VirtualVideoHwDevice" );
       
    35 
       
    36     /**
       
    37      * Name of the logical device dll file name.
       
    38      */
       
    39     _LIT( KDeviceFileName, "guestvideohw" );
       
    40 
       
    41     /**
       
    42      * Current version of the driver.
       
    43      */
       
    44     const TInt KMajorVer = 1;
       
    45     const TInt KMinorVer = 0;
       
    46     const TInt KBuildVer = 1;
       
    47     }
       
    48 
       
    49 #endif // __GUESTVIDEODRIVERCOMMON_H