epoc32/include/khronos_types.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
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 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "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 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __KHRONOS_TYPES_H__
    17 #define __KHRONOS_TYPES_H__
    18 
    19 /**
    20 @publishedAll
    21 @released
    22 */
    23 
    24 #include <e32def.h>
    25 
    26 typedef TReal32 khronos_float;    // float
    27 typedef TReal32 khronos_float_t;    // float
    28 typedef TInt8   khronos_int8_t;   // signed char
    29 typedef TUint8  khronos_uint8_t;  // unsigned char
    30 typedef TInt16  khronos_int16_t;  // short int
    31 typedef TUint16 khronos_uint16_t; // unsigned short int
    32 typedef TInt32  khronos_int32_t;  // long int
    33 typedef TUint32 khronos_uint32_t; // unsigned long int
    34 typedef TUint64 khronos_utime_nanoseconds_t;  // unsigned long long
    35 
    36 #endif // __KHRONOS_TYPES_H__