egl/sfopenvg/symbian/eglosnativewindowtype.h
branchEGL_MERGE
changeset 180 f767bd5f4cfc
parent 119 5f371025658c
child 181 c1509651cd2b
equal deleted inserted replaced
119:5f371025658c 180:f767bd5f4cfc
     1 /*
       
     2 * Copyright (c) 2009 Symbian Foundation Ltd
       
     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 * Symbian Foundation Ltd - initial contribution.
       
    10 * 
       
    11 * Contributors:
       
    12 *
       
    13 * Description:
       
    14 * Declaration of native window type structure
       
    15 */
       
    16 
       
    17 #include <e32std.h>
       
    18 #include <w32std.h>
       
    19 
       
    20 #ifndef EGLOSNATVIEWINDOWTYPE_H
       
    21 #define EGLOSNATVIEWINDOWTYPE_H
       
    22 
       
    23 struct TNativeWindowType
       
    24 	{
       
    25 public:
       
    26 	TNativeWindowType() :
       
    27 	iSize(0,0),
       
    28 	iBitmap(NULL)
       
    29 	{};
       
    30 	TSize				iSize; //to keep
       
    31 	CFbsBitmap* 		iBitmap; //to keep
       
    32 	};
       
    33 
       
    34 #endif //EGLOSCALLBACK_H