Ver código fonte

net: fix a Windows compilation issue.

legacy
Sam Hocevar 5 anos atrás
pai
commit
8c37ce1497
1 arquivos alterados com 9 adições e 0 exclusões
  1. +9
    -0
      src/net/http.cpp

+ 9
- 0
src/net/http.cpp Ver arquivo

@@ -16,6 +16,15 @@
# define CPPHTTPLIB_OPENSSL_SUPPORT 1
#endif

#if _WIN32
# define WIN32_LEAN_AND_MEAN 1
# include <windows.h>
# undef NEAR // avoids errors in <inaddr.h>
# undef FAR
# define NEAR
# define FAR
#endif

#if __EMSCRIPTEN__
# include <emscripten/fetch.h>
#else


Carregando…
Cancelar
Salvar