symbian-qemu-0.9.1-12/model-libraries/commoninc/platformtypes.h
branchGCC_SURGE
changeset 93 07b904f40417
parent 74 eb3d0111f868
child 114 19c4533e1567
equal deleted inserted replaced
90:73ba398cc7f4 93:07b904f40417
     1 #ifndef PLATFORMTYPES_H
     1 #ifndef PLATFORMTYPES_H
     2 #define PLATFORMTYPES_H
     2 #define PLATFORMTYPES_H
     3 
     3 #ifdef HAVE_STDINT_H
       
     4 #include <stdint.h>
       
     5 #else
     4 // TODO: We should have a proper type definition file created common for standalone model libraries
     6 // TODO: We should have a proper type definition file created common for standalone model libraries
     5 typedef signed __int8         int8_t;
     7 typedef signed __int8         int8_t;
     6 typedef signed __int16        int16_t;
     8 typedef signed __int16        int16_t;
     7 typedef signed __int32        int32_t;
     9 typedef signed __int32        int32_t;
     8 typedef signed __int64        int64_t;
    10 typedef signed __int64        int64_t;
    13 typedef unsigned __int32    uint32_t;
    15 typedef unsigned __int32    uint32_t;
    14 typedef unsigned __int32    u_int32_t;
    16 typedef unsigned __int32    u_int32_t;
    15 typedef unsigned __int64    uint64_t;
    17 typedef unsigned __int64    uint64_t;
    16 typedef unsigned __int64    u_int64_t;
    18 typedef unsigned __int64    u_int64_t;
    17 typedef unsigned char byte_t;
    19 typedef unsigned char byte_t;
       
    20 #endif
       
    21 
    18 
    22 
    19 #endif // PLATFORMTYPES_H
    23 #endif // PLATFORMTYPES_H