MWCapture SDK Linux  3.3.1.LAST_SVN_COMMIT_NUM
stdtypes.h
1 #pragma once
2 
3 
4 typedef char int8_t;
5 typedef unsigned char uint8_t;
6 
7 typedef short int16_t;
8 typedef unsigned short uint16_t;
9 
10 typedef int int32_t;
11 typedef unsigned int uint32_t;
12 
13 typedef long long int64_t;
14 typedef unsigned long long uint64_t;