Commit f7e0b133 authored by Marko Mikulicic's avatar Marko Mikulicic Committed by Sergey Lyubka

Implement incremental UBJSON serializer

    PUBLISHED_FROM=fe0936cbf8c16d5b5cfdf674e8e7181f6b2771cc
parent 17aa2a70
...@@ -139,11 +139,14 @@ ...@@ -139,11 +139,14 @@
#endif #endif
#define random() rand() #define random() rand()
typedef int socklen_t; typedef int socklen_t;
typedef char int8_t;
typedef unsigned char uint8_t; typedef unsigned char uint8_t;
typedef int int32_t;
typedef unsigned int uint32_t; typedef unsigned int uint32_t;
typedef short int16_t;
typedef unsigned short uint16_t; typedef unsigned short uint16_t;
typedef unsigned __int64 uint64_t;
typedef __int64 int64_t; typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
typedef SOCKET sock_t; typedef SOCKET sock_t;
typedef uint32_t in_addr_t; typedef uint32_t in_addr_t;
#ifndef UINT16_MAX #ifndef UINT16_MAX
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment