Merge pull request #444 from jmargeta/MSVC_uint16_fix

BUG: Fixing MSVC build by adding appropriate typedefs for uint16_t.
This commit is contained in:
Stefan van der Walt
2013-03-03 20:20:45 -08:00
+1
View File
@@ -12,6 +12,7 @@
#include <stdint.h>
#elif defined(_MSC_VER)
#define inline __inline
typedef unsigned __int16 uint16_t;
#endif
/**