Lumiverse  2.5
A framework for creating lighting control applications
ms_stdint.h
1 #ifndef _STDINT_H
2 #define _STDINT_H
3 
4 /* Exact-width integer types */
5 
6 #ifndef __int8_t_defined
7 #define __int8_t_defined
8 typedef signed char int8_t;
9 typedef short int16_t;
10 typedef long int32_t;
11 typedef long long int64_t;
12 #endif
13 
14 typedef unsigned char uint8_t;
15 typedef unsigned short uint16_t;
16 #ifndef __uint32_t_defined
17 #define __uint32_t_defined
18 typedef unsigned long uint32_t;
19 #endif
20 typedef unsigned long long uint64_t;
21 
22 #endif /* _STDINT_H */