os/mm/mmlibs/mmfw/inc/Mda/Client/Video.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-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 "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 // Mda\Client\Video.h
    15 // 
    16 //
    17 
    18 #ifndef __MDA_CLIENT_VIDEO_H__
    19 #define __MDA_CLIENT_VIDEO_H__
    20 
    21 #ifndef __MDA_COMMON_RESOURCE_H__
    22 #include <mda/common/resource.h>
    23 #endif
    24 #ifndef __MDA_COMMON_VIDEO_H__
    25 #include <mda/common/video.h>
    26 #endif
    27 
    28 // Media Server Bitmap Device
    29 
    30 /**
    31 @internalTechnology
    32 */
    33 class TMdaFbsBitmapDevice : public TMdaStreamDevice
    34 	{
    35 public:
    36 	inline TMdaFbsBitmapDevice();
    37 	};
    38 
    39 /**
    40 @internalTechnology
    41 */
    42 class TMdaFbsBitmapHandle : public TMdaPackage
    43 	{
    44 public:
    45 	inline TMdaFbsBitmapHandle();
    46 public:
    47 	TInt iBitmapHandle;
    48 	};
    49 
    50 /**
    51 @internalTechnology
    52 */
    53 class TMdaFbsBitmapMaskHandle : public TMdaPackage
    54 	{
    55 public:
    56 	inline TMdaFbsBitmapMaskHandle();
    57 public:
    58 	TInt iBitmapHandle;
    59 	};
    60 
    61 #include <mda/client/video.inl>
    62 
    63 #endif
    64