epoc32/include/pcstore/pcstoredef.h
branchSymbian3
changeset 4 837f303aceeb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/epoc32/include/pcstore/pcstoredef.h	Wed Mar 31 12:33:34 2010 +0100
@@ -0,0 +1,53 @@
+// 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__)