liblcf
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
reader_types.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 liblcf authors
3  * This file is released under the MIT License
4  * http://opensource.org/licenses/MIT
5  */
6 
7 #ifndef LCF_READER_TYPES_H
8 #define LCF_READER_TYPES_H
9 
10 #ifndef _MSC_VER
11  #include <stdint.h>
12 #else
13  typedef unsigned char uint8_t;
14  typedef signed short int16_t;
15  typedef unsigned short uint16_t;
16  typedef signed int int32_t;
17  typedef unsigned int uint32_t;
18 #endif
19 
20 #endif