2011-03-10 18:48:02 +08:00
|
|
|
/***************************************************************************
|
2010-08-08 08:58:19 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-10 18:48:02 +08:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2011-03-10 18:48:02 +08:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2011-03-10 18:48:02 +08:00
|
|
|
***************************************************************************/
|
2010-08-08 08:58:19 +08:00
|
|
|
|
2013-03-12 07:24:37 +08:00
|
|
|
#ifdef CURL_STATICLIB
|
|
|
|
# define LIBHOSTNAME_EXTERN
|
2020-09-21 20:28:40 +08:00
|
|
|
#elif defined(WIN32)
|
2014-11-06 08:32:42 +08:00
|
|
|
# define LIBHOSTNAME_EXTERN __declspec(dllexport)
|
|
|
|
#elif defined(CURL_HIDDEN_SYMBOLS)
|
2013-03-12 07:24:37 +08:00
|
|
|
# define LIBHOSTNAME_EXTERN CURL_EXTERN_SYMBOL
|
2010-08-08 08:58:19 +08:00
|
|
|
#else
|
2013-03-12 07:24:37 +08:00
|
|
|
# define LIBHOSTNAME_EXTERN
|
2010-08-08 08:58:19 +08:00
|
|
|
#endif
|
|
|
|
|
2010-08-09 11:45:11 +08:00
|
|
|
#ifdef USE_WINSOCK
|
|
|
|
# define FUNCALLCONV __stdcall
|
|
|
|
#else
|
|
|
|
# define FUNCALLCONV
|
|
|
|
#endif
|
|
|
|
|
|
|
|
LIBHOSTNAME_EXTERN int FUNCALLCONV
|
|
|
|
gethostname(char *name, GETHOSTNAME_TYPE_ARG2 namelen);
|