epoc32/include/eglosnativewindowtype.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     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