2015-05-21 01:05:57 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:03:12 +08:00
|
|
|
| Copyright (c) The PHP Group |
|
2015-05-21 01:05:57 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_01.txt |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Pierre Joye <pierre@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2017-07-04 22:21:45 +08:00
|
|
|
#ifndef PHP_WIN32_INET_H
|
|
|
|
#define PHP_WIN32_INET_H
|
2015-05-21 01:05:57 +08:00
|
|
|
|
2013-01-31 04:40:45 +08:00
|
|
|
#include <php.h>
|
|
|
|
#include <Winsock2.h>
|
2012-03-04 23:08:12 +08:00
|
|
|
|
|
|
|
PHPAPI int inet_aton(const char *cp, struct in_addr *inp);
|
2017-07-04 22:08:48 +08:00
|
|
|
|
2017-07-04 22:21:45 +08:00
|
|
|
#endif
|