epoc32/include/eglosnativewindowtype.h
branchSymbian3
changeset 4 837f303aceeb
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/epoc32/include/eglosnativewindowtype.h	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Symbian Foundation Ltd
     1.6 +* This component and the accompanying materials are made available
     1.7 +* under the terms of the License "Eclipse Public License v1.0"
     1.8 +* which accompanies this distribution, and is available
     1.9 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +*
    1.11 +* Initial Contributors:
    1.12 +* Symbian Foundation Ltd - initial contribution.
    1.13 +* 
    1.14 +* Contributors:
    1.15 +*
    1.16 +* Description:
    1.17 +* Declaration of native window type structure
    1.18 +*/
    1.19 +
    1.20 +#include <e32std.h>
    1.21 +#include <w32std.h>
    1.22 +
    1.23 +#ifndef EGLOSNATVIEWINDOWTYPE_H
    1.24 +#define EGLOSNATVIEWINDOWTYPE_H
    1.25 +
    1.26 +struct TNativeWindowType
    1.27 +	{
    1.28 +public:
    1.29 +	TNativeWindowType() :
    1.30 +	iSize(0,0),
    1.31 +	iBitmap(NULL)
    1.32 +	{};
    1.33 +	TSize				iSize; //to keep
    1.34 +	CFbsBitmap* 		iBitmap; //to keep
    1.35 +	};
    1.36 +
    1.37 +#endif //EGLOSCALLBACK_H