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.
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// PCStore component - type definitions.
//
//
/**
@file
@internalAll
@released
*/
#if !defined(__PCSTOREDEF_H__)
#define __PCSTOREDEF_H__
namespace PCStore
{
typedef char TInt8;
typedef unsigned char TUint8;
typedef short int TInt16;
typedef unsigned short int TUint16;
typedef int TInt32;
typedef unsigned int TUint32;
typedef long long TInt64;
typedef unsigned long long TUint64;
typedef float TReal32;
typedef double TReal64;
typedef unsigned short int TText;
typedef int TBool;
typedef double TReal;
typedef signed int TInt;
typedef unsigned int TUint;
typedef unsigned int TChar;
}
#endif // !defined(__PCSTOREDEF_H__)