added int8_t & uint8_t definitions for msvc

This commit is contained in:
Roman Arutyunyan 2013-06-11 21:20:35 +04:00
parent e4070fb777
commit b93e2cdff6

View file

@ -16,6 +16,12 @@
#include "ngx_rtmp_bandwidth.h"
#if (NGX_WIN32)
typedef __int8 int8_t;
typedef unsigned __int8 uint8_t;
#endif
typedef struct {
void **main_conf;
void **srv_conf;