Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
kehengzhong authored Sep 4, 2021
1 parent e9bdc2f commit 1a9788a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/http_listen.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ typedef struct http_listen {
#ifdef UNIX
void * cbhandle;
#endif
#ifdef _WIN32
#if defined(_WIN32) || defined(_WIN64)
HMODULE cbhandle;
#endif

Expand Down
4 changes: 2 additions & 2 deletions include/http_sndpxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <regex.h>
#endif

#ifdef _WIN32
#if defined(_WIN32) || defined(_WIN64)
#define PCRE_STATIC 1
#include "pcre.h"
#endif
Expand All @@ -24,7 +24,7 @@ typedef struct cli_send_proxy_s {
#ifdef UNIX
regex_t * preg;
#endif
#ifdef _WIN32
#if defined(_WIN32) || defined(_WIN64)
pcre * preg;
#endif

Expand Down

0 comments on commit 1a9788a

Please sign in to comment.