mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
add missing uint32_t typedef on msvc
uint32_t is used in the draft APIs and undefined on MSC 1500 preventing compilation
This commit is contained in:
parent
4a18f6204c
commit
e0271087f0
@ -102,6 +102,9 @@ extern "C" {
|
||||
# ifndef int32_t
|
||||
typedef __int32 int32_t;
|
||||
# endif
|
||||
# ifndef uint32_t
|
||||
typedef unsigned __int32 uint32_t;
|
||||
# endif
|
||||
# ifndef uint16_t
|
||||
typedef unsigned __int16 uint16_t;
|
||||
# endif
|
||||
|
Loading…
Reference in New Issue
Block a user