diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-20 06:08:47 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-20 06:08:47 +0000 |
commit | bd91999ea577266b0d899ea206cdaa8d19f486b2 (patch) | |
tree | 6936e209210662a34db4f9b9c63d03b95e7d9956 /src/os/win32/ngx_os.h | |
parent | b533e9825295a0855d78912dae9d8f1180df0900 (diff) | |
download | nginx-bd91999ea577266b0d899ea206cdaa8d19f486b2.tar.gz nginx-bd91999ea577266b0d899ea206cdaa8d19f486b2.zip |
Win32 master/workers model
Diffstat (limited to 'src/os/win32/ngx_os.h')
-rw-r--r-- | src/os/win32/ngx_os.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/os/win32/ngx_os.h b/src/os/win32/ngx_os.h index 2124ab8d7..cbd1fc22b 100644 --- a/src/os/win32/ngx_os.h +++ b/src/os/win32/ngx_os.h @@ -10,7 +10,6 @@ #include <ngx_config.h> #include <ngx_core.h> -#include <ngx_gui.h> #define NGX_IO_SENDFILE 1 @@ -40,11 +39,15 @@ ssize_t ngx_udp_wsarecv(ngx_connection_t *c, u_char *buf, size_t size); ssize_t ngx_udp_overlapped_wsarecv(ngx_connection_t *c, u_char *buf, size_t size); ssize_t ngx_wsarecv_chain(ngx_connection_t *c, ngx_chain_t *chain); +ssize_t ngx_wsasend(ngx_connection_t *c, u_char *buf, size_t size); +ssize_t ngx_overlapped_wsasend(ngx_connection_t *c, u_char *buf, size_t size); ngx_chain_t *ngx_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit); ngx_chain_t *ngx_overlapped_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit); +void ngx_cdecl ngx_event_log(ngx_err_t err, const char *fmt, ...); + extern ngx_os_io_t ngx_os_io; extern ngx_uint_t ngx_ncpu; @@ -57,6 +60,4 @@ extern ngx_fd_t ngx_stderr_fileno; extern char ngx_unique[]; - #endif /* _NGX_OS_H_INCLUDED_ */ - |