ex

Fork of mbed-os-example-mbed5-blinky by mbed-os-examples

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mp4ff_int_types.h Source File

mp4ff_int_types.h

00001 #ifndef _MP4FF_INT_TYPES_H_
00002 #define _MP4FF_INT_TYPES_H_
00003 
00004 #if defined (_WIN32)
00005 
00006 #ifdef __MINGW32__
00007 #include <stdlib.h>
00008 #endif /* #ifdef __MINGW32__ */
00009 
00010 typedef signed char int8_t;
00011 typedef unsigned char uint8_t;
00012 typedef signed short int16_t;
00013 typedef unsigned short uint16_t;
00014 typedef signed long int32_t;
00015 typedef unsigned long uint32_t;
00016 
00017 typedef signed __int64 int64_t;
00018 typedef unsigned __int64 uint64_t;
00019 
00020 #else
00021 
00022 #include <stdint.h>
00023 
00024 #endif
00025 
00026 
00027 #endif