symbian-qemu-0.9.1-12/model-libraries/commoninc/platformtypes.h
author Gareth Stockwell <gareth.stockwell@accenture.com>
Tue, 14 Sep 2010 17:21:05 +0100
branchgraphics-phase-3
changeset 109 ae83407e7b6a
child 114 19c4533e1567
permissions -rw-r--r--
Added Makefile for building syborg-graphicswrapper using GCC At present the build fails due to the following missing headers: KhronosAPIWrapper.h VirtualVideoInterfaceConstants.h platformthreading.h protocol_MGraphicsVHWCallback.h

#ifndef PLATFORMTYPES_H
#define PLATFORMTYPES_H
#ifdef HAVE_STDINT_H
#include <stdint.h>
#else
// TODO: We should have a proper type definition file created common for standalone model libraries
typedef signed __int8         int8_t;
typedef signed __int16        int16_t;
typedef signed __int32        int32_t;
typedef signed __int64        int64_t;
typedef unsigned __int8     uint8_t;
typedef unsigned __int8     u_int8_t;
typedef unsigned __int16    uint16_t;
typedef unsigned __int16    u_int16_t;
typedef unsigned __int32    uint32_t;
typedef unsigned __int32    u_int32_t;
typedef unsigned __int64    uint64_t;
typedef unsigned __int64    u_int64_t;
typedef unsigned char byte_t;
#endif


#endif // PLATFORMTYPES_H