symbian-qemu-0.9.1-12/model-libraries/commoninc/platformtypes.h
branchgraphics-phase-3
changeset 109 ae83407e7b6a
child 114 19c4533e1567
equal deleted inserted replaced
99:542d4bc8b7ca 109:ae83407e7b6a
       
     1 #ifndef PLATFORMTYPES_H
       
     2 #define PLATFORMTYPES_H
       
     3 #ifdef HAVE_STDINT_H
       
     4 #include <stdint.h>
       
     5 #else
       
     6 // TODO: We should have a proper type definition file created common for standalone model libraries
       
     7 typedef signed __int8         int8_t;
       
     8 typedef signed __int16        int16_t;
       
     9 typedef signed __int32        int32_t;
       
    10 typedef signed __int64        int64_t;
       
    11 typedef unsigned __int8     uint8_t;
       
    12 typedef unsigned __int8     u_int8_t;
       
    13 typedef unsigned __int16    uint16_t;
       
    14 typedef unsigned __int16    u_int16_t;
       
    15 typedef unsigned __int32    uint32_t;
       
    16 typedef unsigned __int32    u_int32_t;
       
    17 typedef unsigned __int64    uint64_t;
       
    18 typedef unsigned __int64    u_int64_t;
       
    19 typedef unsigned char byte_t;
       
    20 #endif
       
    21 
       
    22 
       
    23 #endif // PLATFORMTYPES_H