OpenNet
StdInt.h
Aller à la documentation de ce fichier.
1 
2 // Product OpenNet
3 
7 
8 #pragma once
9 
10 // Data type
12 
13 #ifdef _KMS_LINUX_
14  typedef unsigned short uint16_t;
15  typedef unsigned int uint32_t;
16  typedef unsigned long long uint64_t;
17  typedef unsigned char uint8_t ;
18 #endif
19 
20 #ifdef _KMS_WINDOWS_
21  typedef unsigned __int16 uint16_t;
22  typedef unsigned __int32 uint32_t;
23  typedef unsigned __int64 uint64_t;
24  typedef unsigned __int8 uint8_t ;
25 #endif