Last active
November 25, 2024 01:40
-
-
Save tokyovigilante/2ff79b8395e48798c4a7c8e901eb18c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{.warning[UnusedImport]: off.} | |
{.hint[XDeclaredButNotUsed]: off.} | |
from macros import hint, warning, newLit, getSize | |
from os import parentDir | |
when not declared(ownSizeOf): | |
macro ownSizeof(x: typed): untyped = | |
newLit(x.getSize) | |
when not declared(CURL_HTTP_VERSION_NONE): | |
const | |
CURL_HTTP_VERSION_NONE* = cuint(0) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_NONE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_1_0): | |
const | |
CURL_HTTP_VERSION_1_0* = cuint(1) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_1_0" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_1_1): | |
const | |
CURL_HTTP_VERSION_1_1* = cuint(2) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_1_1" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_2_0): | |
const | |
CURL_HTTP_VERSION_2_0* = cuint(3) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_2_0" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_2TLS): | |
const | |
CURL_HTTP_VERSION_2TLS* = cuint(4) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_2TLS" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE): | |
const | |
CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE* = cuint(5) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_3): | |
const | |
CURL_HTTP_VERSION_3* = cuint(30) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_3" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_3ONLY): | |
const | |
CURL_HTTP_VERSION_3ONLY* = cuint(31) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_3ONLY" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_LAST): | |
const | |
CURL_HTTP_VERSION_LAST* = cuint(32) | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_LAST" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_NONE): | |
const | |
CURL_RTSPREQ_NONE* = cuint(0) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_NONE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_OPTIONS): | |
const | |
CURL_RTSPREQ_OPTIONS* = cuint(1) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_OPTIONS" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_DESCRIBE): | |
const | |
CURL_RTSPREQ_DESCRIBE* = cuint(2) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_DESCRIBE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_ANNOUNCE): | |
const | |
CURL_RTSPREQ_ANNOUNCE* = cuint(3) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_ANNOUNCE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_SETUP): | |
const | |
CURL_RTSPREQ_SETUP* = cuint(4) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_SETUP" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_PLAY): | |
const | |
CURL_RTSPREQ_PLAY* = cuint(5) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_PLAY" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_PAUSE): | |
const | |
CURL_RTSPREQ_PAUSE* = cuint(6) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_PAUSE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_TEARDOWN): | |
const | |
CURL_RTSPREQ_TEARDOWN* = cuint(7) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_TEARDOWN" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_GET_PARAMETER): | |
const | |
CURL_RTSPREQ_GET_PARAMETER* = cuint(8) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_GET_PARAMETER" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_SET_PARAMETER): | |
const | |
CURL_RTSPREQ_SET_PARAMETER* = cuint(9) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_SET_PARAMETER" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_RECORD): | |
const | |
CURL_RTSPREQ_RECORD* = cuint(10) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_RECORD" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_RECEIVE): | |
const | |
CURL_RTSPREQ_RECEIVE* = cuint(11) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_RECEIVE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_RTSPREQ_LAST): | |
const | |
CURL_RTSPREQ_LAST* = cuint(12) | |
else: | |
static : | |
hint("Declaration of " & "CURL_RTSPREQ_LAST" & | |
" already exists, not redeclaring") | |
type | |
enum_curl_sslbackend_2566914226* {.size: sizeof(cuint).} = enum | |
CURLSSLBACKEND_NONE = 0, CURLSSLBACKEND_OPENSSL = 1, | |
CURLSSLBACKEND_GNUTLS = 2, CURLSSLBACKEND_NSS = 3, | |
CURLSSLBACKEND_OBSOLETE4 = 4, CURLSSLBACKEND_GSKIT = 5, | |
CURLSSLBACKEND_POLARSSL = 6, CURLSSLBACKEND_WOLFSSL = 7, | |
CURLSSLBACKEND_SCHANNEL = 8, CURLSSLBACKEND_SECURETRANSPORT = 9, | |
CURLSSLBACKEND_AXTLS = 10, CURLSSLBACKEND_MBEDTLS = 11, | |
CURLSSLBACKEND_MESALINK = 12, CURLSSLBACKEND_BEARSSL = 13, | |
CURLSSLBACKEND_RUSTLS = 14 | |
type | |
enum_curlfiletype_2566914244* {.size: sizeof(cuint).} = enum | |
CURLFILETYPE_FILE = 0, CURLFILETYPE_DIRECTORY = 1, CURLFILETYPE_SYMLINK = 2, | |
CURLFILETYPE_DEVICE_BLOCK = 3, CURLFILETYPE_DEVICE_CHAR = 4, | |
CURLFILETYPE_NAMEDPIPE = 5, CURLFILETYPE_SOCKET = 6, CURLFILETYPE_DOOR = 7, | |
CURLFILETYPE_UNKNOWN = 8 | |
type | |
enum_curlsocktype_2566914264* {.size: sizeof(cuint).} = enum | |
CURLSOCKTYPE_IPCXN = 0, CURLSOCKTYPE_ACCEPT = 1, CURLSOCKTYPE_LAST = 2 | |
type | |
enum_curlioerr_2566914278* {.size: sizeof(cuint).} = enum | |
CURLIOE_OK = 0, CURLIOE_UNKNOWNCMD = 1, CURLIOE_FAILRESTART = 2, | |
CURLIOE_LAST = 3 | |
type | |
enum_curliocmd_2566914282* {.size: sizeof(cuint).} = enum | |
CURLIOCMD_NOP = 0, CURLIOCMD_RESTARTREAD = 1, CURLIOCMD_LAST = 2 | |
type | |
enum_curl_infotype_2566914298* {.size: sizeof(cuint).} = enum | |
CURLINFO_TEXT = 0, CURLINFO_HEADER_IN = 1, CURLINFO_HEADER_OUT = 2, | |
CURLINFO_DATA_IN = 3, CURLINFO_DATA_OUT = 4, CURLINFO_SSL_DATA_IN = 5, | |
CURLINFO_SSL_DATA_OUT = 6, CURLINFO_END = 7 | |
type | |
enum_CURLcode_2566914306* {.size: sizeof(cuint).} = enum | |
CURLE_OK = 0, CURLE_UNSUPPORTED_PROTOCOL = 1, CURLE_FAILED_INIT = 2, | |
CURLE_URL_MALFORMAT = 3, CURLE_NOT_BUILT_IN = 4, | |
CURLE_COULDNT_RESOLVE_PROXY = 5, CURLE_COULDNT_RESOLVE_HOST = 6, | |
CURLE_COULDNT_CONNECT = 7, CURLE_WEIRD_SERVER_REPLY = 8, | |
CURLE_REMOTE_ACCESS_DENIED = 9, CURLE_FTP_ACCEPT_FAILED = 10, | |
CURLE_FTP_WEIRD_PASS_REPLY = 11, CURLE_FTP_ACCEPT_TIMEOUT = 12, | |
CURLE_FTP_WEIRD_PASV_REPLY = 13, CURLE_FTP_WEIRD_227_FORMAT = 14, | |
CURLE_FTP_CANT_GET_HOST = 15, CURLE_HTTP2 = 16, | |
CURLE_FTP_COULDNT_SET_TYPE = 17, CURLE_PARTIAL_FILE = 18, | |
CURLE_FTP_COULDNT_RETR_FILE = 19, CURLE_OBSOLETE20 = 20, | |
CURLE_QUOTE_ERROR = 21, CURLE_HTTP_RETURNED_ERROR = 22, | |
CURLE_WRITE_ERROR = 23, CURLE_OBSOLETE24 = 24, CURLE_UPLOAD_FAILED = 25, | |
CURLE_READ_ERROR = 26, CURLE_OUT_OF_MEMORY = 27, | |
CURLE_OPERATION_TIMEDOUT = 28, CURLE_OBSOLETE29 = 29, | |
CURLE_FTP_PORT_FAILED = 30, CURLE_FTP_COULDNT_USE_REST = 31, | |
CURLE_OBSOLETE32 = 32, CURLE_RANGE_ERROR = 33, CURLE_HTTP_POST_ERROR = 34, | |
CURLE_SSL_CONNECT_ERROR = 35, CURLE_BAD_DOWNLOAD_RESUME = 36, | |
CURLE_FILE_COULDNT_READ_FILE = 37, CURLE_LDAP_CANNOT_BIND = 38, | |
CURLE_LDAP_SEARCH_FAILED = 39, CURLE_OBSOLETE40 = 40, | |
CURLE_FUNCTION_NOT_FOUND = 41, CURLE_ABORTED_BY_CALLBACK = 42, | |
CURLE_BAD_FUNCTION_ARGUMENT = 43, CURLE_OBSOLETE44 = 44, | |
CURLE_INTERFACE_FAILED = 45, CURLE_OBSOLETE46 = 46, | |
CURLE_TOO_MANY_REDIRECTS = 47, CURLE_UNKNOWN_OPTION = 48, | |
CURLE_SETOPT_OPTION_SYNTAX = 49, CURLE_OBSOLETE50 = 50, | |
CURLE_OBSOLETE51 = 51, CURLE_GOT_NOTHING = 52, | |
CURLE_SSL_ENGINE_NOTFOUND = 53, CURLE_SSL_ENGINE_SETFAILED = 54, | |
CURLE_SEND_ERROR = 55, CURLE_RECV_ERROR = 56, CURLE_OBSOLETE57 = 57, | |
CURLE_SSL_CERTPROBLEM = 58, CURLE_SSL_CIPHER = 59, | |
CURLE_PEER_FAILED_VERIFICATION = 60, CURLE_BAD_CONTENT_ENCODING = 61, | |
CURLE_OBSOLETE62 = 62, CURLE_FILESIZE_EXCEEDED = 63, | |
CURLE_USE_SSL_FAILED = 64, CURLE_SEND_FAIL_REWIND = 65, | |
CURLE_SSL_ENGINE_INITFAILED = 66, CURLE_LOGIN_DENIED = 67, | |
CURLE_TFTP_NOTFOUND = 68, CURLE_TFTP_PERM = 69, CURLE_REMOTE_DISK_FULL = 70, | |
CURLE_TFTP_ILLEGAL = 71, CURLE_TFTP_UNKNOWNID = 72, | |
CURLE_REMOTE_FILE_EXISTS = 73, CURLE_TFTP_NOSUCHUSER = 74, | |
CURLE_OBSOLETE75 = 75, CURLE_OBSOLETE76 = 76, CURLE_SSL_CACERT_BADFILE = 77, | |
CURLE_REMOTE_FILE_NOT_FOUND = 78, CURLE_SSH = 79, | |
CURLE_SSL_SHUTDOWN_FAILED = 80, CURLE_AGAIN = 81, | |
CURLE_SSL_CRL_BADFILE = 82, CURLE_SSL_ISSUER_ERROR = 83, | |
CURLE_FTP_PRET_FAILED = 84, CURLE_RTSP_CSEQ_ERROR = 85, | |
CURLE_RTSP_SESSION_ERROR = 86, CURLE_FTP_BAD_FILE_LIST = 87, | |
CURLE_CHUNK_FAILED = 88, CURLE_NO_CONNECTION_AVAILABLE = 89, | |
CURLE_SSL_PINNEDPUBKEYNOTMATCH = 90, CURLE_SSL_INVALIDCERTSTATUS = 91, | |
CURLE_HTTP2_STREAM = 92, CURLE_RECURSIVE_API_CALL = 93, | |
CURLE_AUTH_ERROR = 94, CURLE_HTTP3 = 95, CURLE_QUIC_CONNECT_ERROR = 96, | |
CURLE_PROXY = 97, CURLE_SSL_CLIENTCERT = 98, CURLE_UNRECOVERABLE_POLL = 99, | |
CURLE_TOO_LARGE = 100, CURLE_ECH_REQUIRED = 101, CURL_LAST = 102 | |
type | |
enum_CURLproxycode_2566914310* {.size: sizeof(cuint).} = enum | |
CURLPX_OK = 0, CURLPX_BAD_ADDRESS_TYPE = 1, CURLPX_BAD_VERSION = 2, | |
CURLPX_CLOSED = 3, CURLPX_GSSAPI = 4, CURLPX_GSSAPI_PERMSG = 5, | |
CURLPX_GSSAPI_PROTECTION = 6, CURLPX_IDENTD = 7, CURLPX_IDENTD_DIFFER = 8, | |
CURLPX_LONG_HOSTNAME = 9, CURLPX_LONG_PASSWD = 10, CURLPX_LONG_USER = 11, | |
CURLPX_NO_AUTH = 12, CURLPX_RECV_ADDRESS = 13, CURLPX_RECV_AUTH = 14, | |
CURLPX_RECV_CONNECT = 15, CURLPX_RECV_REQACK = 16, | |
CURLPX_REPLY_ADDRESS_TYPE_NOT_SUPPORTED = 17, | |
CURLPX_REPLY_COMMAND_NOT_SUPPORTED = 18, | |
CURLPX_REPLY_CONNECTION_REFUSED = 19, | |
CURLPX_REPLY_GENERAL_SERVER_FAILURE = 20, | |
CURLPX_REPLY_HOST_UNREACHABLE = 21, CURLPX_REPLY_NETWORK_UNREACHABLE = 22, | |
CURLPX_REPLY_NOT_ALLOWED = 23, CURLPX_REPLY_TTL_EXPIRED = 24, | |
CURLPX_REPLY_UNASSIGNED = 25, CURLPX_REQUEST_FAILED = 26, | |
CURLPX_RESOLVE_HOST = 27, CURLPX_SEND_AUTH = 28, CURLPX_SEND_CONNECT = 29, | |
CURLPX_SEND_REQUEST = 30, CURLPX_UNKNOWN_FAIL = 31, | |
CURLPX_UNKNOWN_MODE = 32, CURLPX_USER_REJECTED = 33, CURLPX_LAST = 34 | |
type | |
enum_curl_proxytype_2566914318* {.size: sizeof(cuint).} = enum | |
CURLPROXY_HTTP = 0, CURLPROXY_HTTP_1_0 = 1, CURLPROXY_HTTPS = 2, | |
CURLPROXY_HTTPS2 = 3, CURLPROXY_SOCKS4 = 4, CURLPROXY_SOCKS5 = 5, | |
CURLPROXY_SOCKS4A = 6, CURLPROXY_SOCKS5_HOSTNAME = 7 | |
type | |
enum_curl_khtype_2566914322* {.size: sizeof(cuint).} = enum | |
CURLKHTYPE_UNKNOWN = 0, CURLKHTYPE_RSA1 = 1, CURLKHTYPE_RSA = 2, | |
CURLKHTYPE_DSS = 3, CURLKHTYPE_ECDSA = 4, CURLKHTYPE_ED25519 = 5 | |
type | |
enum_curl_khstat_2566914326* {.size: sizeof(cuint).} = enum | |
CURLKHSTAT_FINE_ADD_TO_FILE = 0, CURLKHSTAT_FINE = 1, CURLKHSTAT_REJECT = 2, | |
CURLKHSTAT_DEFER = 3, CURLKHSTAT_FINE_REPLACE = 4, CURLKHSTAT_LAST = 5 | |
type | |
enum_curl_khmatch_2566914328* {.size: sizeof(cuint).} = enum | |
CURLKHMATCH_OK = 0, CURLKHMATCH_MISMATCH = 1, CURLKHMATCH_MISSING = 2, | |
CURLKHMATCH_LAST = 3 | |
type | |
enum_curl_usessl_2566914334* {.size: sizeof(cuint).} = enum | |
CURLUSESSL_NONE = 0, CURLUSESSL_TRY = 1, CURLUSESSL_CONTROL = 2, | |
CURLUSESSL_ALL = 3, CURLUSESSL_LAST = 4 | |
type | |
enum_curl_ftpccc_2566914336* {.size: sizeof(cuint).} = enum | |
CURLFTPSSL_CCC_NONE = 0, CURLFTPSSL_CCC_PASSIVE = 1, | |
CURLFTPSSL_CCC_ACTIVE = 2, CURLFTPSSL_CCC_LAST = 3 | |
type | |
enum_curl_ftpauth_2566914340* {.size: sizeof(cuint).} = enum | |
CURLFTPAUTH_DEFAULT = 0, CURLFTPAUTH_SSL = 1, CURLFTPAUTH_TLS = 2, | |
CURLFTPAUTH_LAST = 3 | |
type | |
enum_curl_ftpcreatedir_2566914344* {.size: sizeof(cuint).} = enum | |
CURLFTP_CREATE_DIR_NONE = 0, CURLFTP_CREATE_DIR = 1, | |
CURLFTP_CREATE_DIR_RETRY = 2, CURLFTP_CREATE_DIR_LAST = 3 | |
type | |
enum_curl_ftpmethod_2566914348* {.size: sizeof(cuint).} = enum | |
CURLFTPMETHOD_DEFAULT = 0, CURLFTPMETHOD_MULTICWD = 1, | |
CURLFTPMETHOD_NOCWD = 2, CURLFTPMETHOD_SINGLECWD = 3, CURLFTPMETHOD_LAST = 4 | |
type | |
enum_CURLSTScode_2566914356* {.size: sizeof(cuint).} = enum | |
CURLSTS_OK = 0, CURLSTS_DONE = 1, CURLSTS_FAIL = 2 | |
type | |
enum_CURLoption_2566914364* {.size: sizeof(cuint).} = enum | |
CURLOPT_PORT = 3, CURLOPT_TIMEOUT = 13, CURLOPT_INFILESIZE = 14, | |
CURLOPT_LOW_SPEED_LIMIT = 19, CURLOPT_LOW_SPEED_TIME = 20, | |
CURLOPT_RESUME_FROM = 21, CURLOPT_CRLF = 27, CURLOPT_SSLVERSION = 32, | |
CURLOPT_TIMECONDITION = 33, CURLOPT_TIMEVALUE = 34, CURLOPT_VERBOSE = 41, | |
CURLOPT_HEADER = 42, CURLOPT_NOPROGRESS = 43, CURLOPT_NOBODY = 44, | |
CURLOPT_FAILONERROR = 45, CURLOPT_UPLOAD = 46, CURLOPT_POST = 47, | |
CURLOPT_DIRLISTONLY = 48, CURLOPT_APPEND = 50, CURLOPT_NETRC = 51, | |
CURLOPT_FOLLOWLOCATION = 52, CURLOPT_TRANSFERTEXT = 53, CURLOPT_PUT = 54, | |
CURLOPT_AUTOREFERER = 58, CURLOPT_PROXYPORT = 59, | |
CURLOPT_POSTFIELDSIZE = 60, CURLOPT_HTTPPROXYTUNNEL = 61, | |
CURLOPT_SSL_VERIFYPEER = 64, CURLOPT_MAXREDIRS = 68, CURLOPT_FILETIME = 69, | |
CURLOPT_MAXCONNECTS = 71, CURLOPT_FRESH_CONNECT = 74, | |
CURLOPT_FORBID_REUSE = 75, CURLOPT_CONNECTTIMEOUT = 78, | |
CURLOPT_HTTPGET = 80, CURLOPT_SSL_VERIFYHOST = 81, | |
CURLOPT_HTTP_VERSION = 84, CURLOPT_FTP_USE_EPSV = 85, | |
CURLOPT_SSLENGINE_DEFAULT = 90, CURLOPT_DNS_USE_GLOBAL_CACHE = 91, | |
CURLOPT_DNS_CACHE_TIMEOUT = 92, CURLOPT_COOKIESESSION = 96, | |
CURLOPT_BUFFERSIZE = 98, CURLOPT_NOSIGNAL = 99, CURLOPT_PROXYTYPE = 101, | |
CURLOPT_UNRESTRICTED_AUTH = 105, CURLOPT_FTP_USE_EPRT = 106, | |
CURLOPT_HTTPAUTH = 107, CURLOPT_FTP_CREATE_MISSING_DIRS = 110, | |
CURLOPT_PROXYAUTH = 111, CURLOPT_SERVER_RESPONSE_TIMEOUT = 112, | |
CURLOPT_IPRESOLVE = 113, CURLOPT_MAXFILESIZE = 114, CURLOPT_USE_SSL = 119, | |
CURLOPT_TCP_NODELAY = 121, CURLOPT_FTPSSLAUTH = 129, | |
CURLOPT_IGNORE_CONTENT_LENGTH = 136, CURLOPT_FTP_SKIP_PASV_IP = 137, | |
CURLOPT_FTP_FILEMETHOD = 138, CURLOPT_LOCALPORT = 139, | |
CURLOPT_LOCALPORTRANGE = 140, CURLOPT_CONNECT_ONLY = 141, | |
CURLOPT_SSL_SESSIONID_CACHE = 150, CURLOPT_SSH_AUTH_TYPES = 151, | |
CURLOPT_FTP_SSL_CCC = 154, CURLOPT_TIMEOUT_MS = 155, | |
CURLOPT_CONNECTTIMEOUT_MS = 156, CURLOPT_HTTP_TRANSFER_DECODING = 157, | |
CURLOPT_HTTP_CONTENT_DECODING = 158, CURLOPT_NEW_FILE_PERMS = 159, | |
CURLOPT_NEW_DIRECTORY_PERMS = 160, CURLOPT_POSTREDIR = 161, | |
CURLOPT_PROXY_TRANSFER_MODE = 166, CURLOPT_ADDRESS_SCOPE = 171, | |
CURLOPT_CERTINFO = 172, CURLOPT_TFTP_BLKSIZE = 178, | |
CURLOPT_SOCKS5_GSSAPI_NEC = 180, CURLOPT_PROTOCOLS = 181, | |
CURLOPT_REDIR_PROTOCOLS = 182, CURLOPT_FTP_USE_PRET = 188, | |
CURLOPT_RTSP_REQUEST = 189, CURLOPT_RTSP_CLIENT_CSEQ = 193, | |
CURLOPT_RTSP_SERVER_CSEQ = 194, CURLOPT_WILDCARDMATCH = 197, | |
CURLOPT_TRANSFER_ENCODING = 207, CURLOPT_GSSAPI_DELEGATION = 210, | |
CURLOPT_ACCEPTTIMEOUT_MS = 212, CURLOPT_TCP_KEEPALIVE = 213, | |
CURLOPT_TCP_KEEPIDLE = 214, CURLOPT_TCP_KEEPINTVL = 215, | |
CURLOPT_SSL_OPTIONS = 216, CURLOPT_SASL_IR = 218, | |
CURLOPT_SSL_ENABLE_NPN = 225, CURLOPT_SSL_ENABLE_ALPN = 226, | |
CURLOPT_EXPECT_100_TIMEOUT_MS = 227, CURLOPT_HEADEROPT = 229, | |
CURLOPT_SSL_VERIFYSTATUS = 232, CURLOPT_SSL_FALSESTART = 233, | |
CURLOPT_PATH_AS_IS = 234, CURLOPT_PIPEWAIT = 237, | |
CURLOPT_STREAM_WEIGHT = 239, CURLOPT_TFTP_NO_OPTIONS = 242, | |
CURLOPT_TCP_FASTOPEN = 244, CURLOPT_KEEP_SENDING_ON_ERROR = 245, | |
CURLOPT_PROXY_SSL_VERIFYPEER = 248, CURLOPT_PROXY_SSL_VERIFYHOST = 249, | |
CURLOPT_PROXY_SSLVERSION = 250, CURLOPT_PROXY_SSL_OPTIONS = 261, | |
CURLOPT_SUPPRESS_CONNECT_HEADERS = 265, CURLOPT_SOCKS5_AUTH = 267, | |
CURLOPT_SSH_COMPRESSION = 268, CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS = 271, | |
CURLOPT_HAPROXYPROTOCOL = 274, CURLOPT_DNS_SHUFFLE_ADDRESSES = 275, | |
CURLOPT_DISALLOW_USERNAME_IN_URL = 278, CURLOPT_UPLOAD_BUFFERSIZE = 280, | |
CURLOPT_UPKEEP_INTERVAL_MS = 281, CURLOPT_HTTP09_ALLOWED = 285, | |
CURLOPT_ALTSVC_CTRL = 286, CURLOPT_MAXAGE_CONN = 288, | |
CURLOPT_MAIL_RCPT_ALLOWFAILS = 290, CURLOPT_HSTS_CTRL = 299, | |
CURLOPT_DOH_SSL_VERIFYPEER = 306, CURLOPT_DOH_SSL_VERIFYHOST = 307, | |
CURLOPT_DOH_SSL_VERIFYSTATUS = 308, CURLOPT_MAXLIFETIME_CONN = 314, | |
CURLOPT_MIME_OPTIONS = 315, CURLOPT_WS_OPTIONS = 320, | |
CURLOPT_CA_CACHE_TIMEOUT = 321, CURLOPT_QUICK_EXIT = 322, | |
CURLOPT_SERVER_RESPONSE_TIMEOUT_MS = 324, CURLOPT_TCP_KEEPCNT = 326, | |
CURLOPT_LASTENTRY = 327, CURLOPT_WRITEDATA = 10001, CURLOPT_URL = 10002, | |
CURLOPT_PROXY = 10004, CURLOPT_USERPWD = 10005, | |
CURLOPT_PROXYUSERPWD = 10006, CURLOPT_RANGE = 10007, | |
CURLOPT_READDATA = 10009, CURLOPT_ERRORBUFFER = 10010, | |
CURLOPT_POSTFIELDS = 10015, CURLOPT_REFERER = 10016, | |
CURLOPT_FTPPORT = 10017, CURLOPT_USERAGENT = 10018, CURLOPT_COOKIE = 10022, | |
CURLOPT_HTTPHEADER = 10023, CURLOPT_HTTPPOST = 10024, | |
CURLOPT_SSLCERT = 10025, CURLOPT_KEYPASSWD = 10026, CURLOPT_QUOTE = 10028, | |
CURLOPT_HEADERDATA = 10029, CURLOPT_COOKIEFILE = 10031, | |
CURLOPT_CUSTOMREQUEST = 10036, CURLOPT_STDERR = 10037, | |
CURLOPT_POSTQUOTE = 10039, CURLOPT_XFERINFODATA = 10057, | |
CURLOPT_INTERFACE = 10062, CURLOPT_KRBLEVEL = 10063, CURLOPT_CAINFO = 10065, | |
CURLOPT_TELNETOPTIONS = 10070, CURLOPT_RANDOM_FILE = 10076, | |
CURLOPT_EGDSOCKET = 10077, CURLOPT_COOKIEJAR = 10082, | |
CURLOPT_SSL_CIPHER_LIST = 10083, CURLOPT_SSLCERTTYPE = 10086, | |
CURLOPT_SSLKEY = 10087, CURLOPT_SSLKEYTYPE = 10088, | |
CURLOPT_SSLENGINE = 10089, CURLOPT_PREQUOTE = 10093, | |
CURLOPT_DEBUGDATA = 10095, CURLOPT_CAPATH = 10097, CURLOPT_SHARE = 10100, | |
CURLOPT_ACCEPT_ENCODING = 10102, CURLOPT_PRIVATE = 10103, | |
CURLOPT_HTTP200ALIASES = 10104, CURLOPT_SSL_CTX_DATA = 10109, | |
CURLOPT_NETRC_FILE = 10118, CURLOPT_IOCTLDATA = 10131, | |
CURLOPT_FTP_ACCOUNT = 10134, CURLOPT_COOKIELIST = 10135, | |
CURLOPT_FTP_ALTERNATIVE_TO_USER = 10147, CURLOPT_SOCKOPTDATA = 10149, | |
CURLOPT_SSH_PUBLIC_KEYFILE = 10152, CURLOPT_SSH_PRIVATE_KEYFILE = 10153, | |
CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 = 10162, CURLOPT_OPENSOCKETDATA = 10164, | |
CURLOPT_COPYPOSTFIELDS = 10165, CURLOPT_SEEKDATA = 10168, | |
CURLOPT_CRLFILE = 10169, CURLOPT_ISSUERCERT = 10170, | |
CURLOPT_USERNAME = 10173, CURLOPT_PASSWORD = 10174, | |
CURLOPT_PROXYUSERNAME = 10175, CURLOPT_PROXYPASSWORD = 10176, | |
CURLOPT_NOPROXY = 10177, CURLOPT_SOCKS5_GSSAPI_SERVICE = 10179, | |
CURLOPT_SSH_KNOWNHOSTS = 10183, CURLOPT_SSH_KEYDATA = 10185, | |
CURLOPT_MAIL_FROM = 10186, CURLOPT_MAIL_RCPT = 10187, | |
CURLOPT_RTSP_SESSION_ID = 10190, CURLOPT_RTSP_STREAM_URI = 10191, | |
CURLOPT_RTSP_TRANSPORT = 10192, CURLOPT_INTERLEAVEDATA = 10195, | |
CURLOPT_CHUNK_DATA = 10201, CURLOPT_FNMATCH_DATA = 10202, | |
CURLOPT_RESOLVE = 10203, CURLOPT_TLSAUTH_USERNAME = 10204, | |
CURLOPT_TLSAUTH_PASSWORD = 10205, CURLOPT_TLSAUTH_TYPE = 10206, | |
CURLOPT_CLOSESOCKETDATA = 10209, CURLOPT_DNS_SERVERS = 10211, | |
CURLOPT_MAIL_AUTH = 10217, CURLOPT_XOAUTH2_BEARER = 10220, | |
CURLOPT_DNS_INTERFACE = 10221, CURLOPT_DNS_LOCAL_IP4 = 10222, | |
CURLOPT_DNS_LOCAL_IP6 = 10223, CURLOPT_LOGIN_OPTIONS = 10224, | |
CURLOPT_PROXYHEADER = 10228, CURLOPT_PINNEDPUBLICKEY = 10230, | |
CURLOPT_UNIX_SOCKET_PATH = 10231, CURLOPT_PROXY_SERVICE_NAME = 10235, | |
CURLOPT_SERVICE_NAME = 10236, CURLOPT_DEFAULT_PROTOCOL = 10238, | |
CURLOPT_STREAM_DEPENDS = 10240, CURLOPT_STREAM_DEPENDS_E = 10241, | |
CURLOPT_CONNECT_TO = 10243, CURLOPT_PROXY_CAINFO = 10246, | |
CURLOPT_PROXY_CAPATH = 10247, CURLOPT_PROXY_TLSAUTH_USERNAME = 10251, | |
CURLOPT_PROXY_TLSAUTH_PASSWORD = 10252, CURLOPT_PROXY_TLSAUTH_TYPE = 10253, | |
CURLOPT_PROXY_SSLCERT = 10254, CURLOPT_PROXY_SSLCERTTYPE = 10255, | |
CURLOPT_PROXY_SSLKEY = 10256, CURLOPT_PROXY_SSLKEYTYPE = 10257, | |
CURLOPT_PROXY_KEYPASSWD = 10258, CURLOPT_PROXY_SSL_CIPHER_LIST = 10259, | |
CURLOPT_PROXY_CRLFILE = 10260, CURLOPT_PRE_PROXY = 10262, | |
CURLOPT_PROXY_PINNEDPUBLICKEY = 10263, CURLOPT_ABSTRACT_UNIX_SOCKET = 10264, | |
CURLOPT_REQUEST_TARGET = 10266, CURLOPT_MIMEPOST = 10269, | |
CURLOPT_RESOLVER_START_DATA = 10273, CURLOPT_TLS13_CIPHERS = 10276, | |
CURLOPT_PROXY_TLS13_CIPHERS = 10277, CURLOPT_DOH_URL = 10279, | |
CURLOPT_CURLU = 10282, CURLOPT_TRAILERDATA = 10284, CURLOPT_ALTSVC = 10287, | |
CURLOPT_SASL_AUTHZID = 10289, CURLOPT_PROXY_ISSUERCERT = 10296, | |
CURLOPT_SSL_EC_CURVES = 10298, CURLOPT_HSTS = 10300, | |
CURLOPT_HSTSREADDATA = 10302, CURLOPT_HSTSWRITEDATA = 10304, | |
CURLOPT_AWS_SIGV4 = 10305, CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256 = 10311, | |
CURLOPT_PREREQDATA = 10313, CURLOPT_SSH_HOSTKEYDATA = 10317, | |
CURLOPT_PROTOCOLS_STR = 10318, CURLOPT_REDIR_PROTOCOLS_STR = 10319, | |
CURLOPT_HAPROXY_CLIENT_IP = 10323, CURLOPT_ECH = 10325, | |
CURLOPT_WRITEFUNCTION = 20011, CURLOPT_READFUNCTION = 20012, | |
CURLOPT_PROGRESSFUNCTION = 20056, CURLOPT_HEADERFUNCTION = 20079, | |
CURLOPT_DEBUGFUNCTION = 20094, CURLOPT_SSL_CTX_FUNCTION = 20108, | |
CURLOPT_IOCTLFUNCTION = 20130, CURLOPT_CONV_FROM_NETWORK_FUNCTION = 20142, | |
CURLOPT_CONV_TO_NETWORK_FUNCTION = 20143, | |
CURLOPT_CONV_FROM_UTF8_FUNCTION = 20144, CURLOPT_SOCKOPTFUNCTION = 20148, | |
CURLOPT_OPENSOCKETFUNCTION = 20163, CURLOPT_SEEKFUNCTION = 20167, | |
CURLOPT_SSH_KEYFUNCTION = 20184, CURLOPT_INTERLEAVEFUNCTION = 20196, | |
CURLOPT_CHUNK_BGN_FUNCTION = 20198, CURLOPT_CHUNK_END_FUNCTION = 20199, | |
CURLOPT_FNMATCH_FUNCTION = 20200, CURLOPT_CLOSESOCKETFUNCTION = 20208, | |
CURLOPT_XFERINFOFUNCTION = 20219, CURLOPT_RESOLVER_START_FUNCTION = 20272, | |
CURLOPT_TRAILERFUNCTION = 20283, CURLOPT_HSTSREADFUNCTION = 20301, | |
CURLOPT_HSTSWRITEFUNCTION = 20303, CURLOPT_PREREQFUNCTION = 20312, | |
CURLOPT_SSH_HOSTKEYFUNCTION = 20316, CURLOPT_INFILESIZE_LARGE = 30115, | |
CURLOPT_RESUME_FROM_LARGE = 30116, CURLOPT_MAXFILESIZE_LARGE = 30117, | |
CURLOPT_POSTFIELDSIZE_LARGE = 30120, CURLOPT_MAX_SEND_SPEED_LARGE = 30145, | |
CURLOPT_MAX_RECV_SPEED_LARGE = 30146, CURLOPT_TIMEVALUE_LARGE = 30270, | |
CURLOPT_SSLCERT_BLOB = 40291, CURLOPT_SSLKEY_BLOB = 40292, | |
CURLOPT_PROXY_SSLCERT_BLOB = 40293, CURLOPT_PROXY_SSLKEY_BLOB = 40294, | |
CURLOPT_ISSUERCERT_BLOB = 40295, CURLOPT_PROXY_ISSUERCERT_BLOB = 40297, | |
CURLOPT_CAINFO_BLOB = 40309, CURLOPT_PROXY_CAINFO_BLOB = 40310 | |
type | |
enum_CURL_NETRC_OPTION_2566914368* {.size: sizeof(cuint).} = enum | |
CURL_NETRC_IGNORED = 0, CURL_NETRC_OPTIONAL = 1, CURL_NETRC_REQUIRED = 2, | |
CURL_NETRC_LAST = 3 | |
type | |
enum_CURL_TLSAUTH_2566914370* {.size: sizeof(cuint).} = enum | |
CURL_TLSAUTH_NONE = 0, CURL_TLSAUTH_SRP = 1, CURL_TLSAUTH_LAST = 2 | |
type | |
enum_curl_TimeCond_2566914372* {.size: sizeof(cuint).} = enum | |
CURL_TIMECOND_NONE = 0, CURL_TIMECOND_IFMODSINCE = 1, | |
CURL_TIMECOND_IFUNMODSINCE = 2, CURL_TIMECOND_LASTMOD = 3, | |
CURL_TIMECOND_LAST = 4 | |
type | |
enum_CURLformoption_2566914380* {.size: sizeof(cuint).} = enum | |
CURLFORM_NOTHING = 0, CURLFORM_COPYNAME = 1, CURLFORM_PTRNAME = 2, | |
CURLFORM_NAMELENGTH = 3, CURLFORM_COPYCONTENTS = 4, | |
CURLFORM_PTRCONTENTS = 5, CURLFORM_CONTENTSLENGTH = 6, | |
CURLFORM_FILECONTENT = 7, CURLFORM_ARRAY = 8, CURLFORM_OBSOLETE = 9, | |
CURLFORM_FILE = 10, CURLFORM_BUFFER = 11, CURLFORM_BUFFERPTR = 12, | |
CURLFORM_BUFFERLENGTH = 13, CURLFORM_CONTENTTYPE = 14, | |
CURLFORM_CONTENTHEADER = 15, CURLFORM_FILENAME = 16, CURLFORM_END = 17, | |
CURLFORM_OBSOLETE2 = 18, CURLFORM_STREAM = 19, CURLFORM_CONTENTLEN = 20, | |
CURLFORM_LASTENTRY = 21 | |
type | |
enum_CURLFORMcode_2566914386* {.size: sizeof(cuint).} = enum | |
CURL_FORMADD_OK = 0, CURL_FORMADD_MEMORY = 1, CURL_FORMADD_OPTION_TWICE = 2, | |
CURL_FORMADD_NULL = 3, CURL_FORMADD_UNKNOWN_OPTION = 4, | |
CURL_FORMADD_INCOMPLETE = 5, CURL_FORMADD_ILLEGAL_ARRAY = 6, | |
CURL_FORMADD_DISABLED = 7, CURL_FORMADD_LAST = 8 | |
type | |
enum_CURLsslset_2566914396* {.size: sizeof(cuint).} = enum | |
CURLSSLSET_OK = 0, CURLSSLSET_UNKNOWN_BACKEND = 1, CURLSSLSET_TOO_LATE = 2, | |
CURLSSLSET_NO_BACKENDS = 3 | |
type | |
enum_CURLINFO_2566914404* {.size: sizeof(cuint).} = enum | |
CURLINFO_NONE = 0, CURLINFO_LASTONE = 68, CURLINFO_EFFECTIVE_URL = 1048577, | |
CURLINFO_CONTENT_TYPE = 1048594, CURLINFO_PRIVATE = 1048597, | |
CURLINFO_FTP_ENTRY_PATH = 1048606, CURLINFO_REDIRECT_URL = 1048607, | |
CURLINFO_PRIMARY_IP = 1048608, CURLINFO_RTSP_SESSION_ID = 1048612, | |
CURLINFO_LOCAL_IP = 1048617, CURLINFO_SCHEME = 1048625, | |
CURLINFO_EFFECTIVE_METHOD = 1048634, CURLINFO_REFERER = 1048636, | |
CURLINFO_CAINFO = 1048637, CURLINFO_CAPATH = 1048638, | |
CURLINFO_RESPONSE_CODE = 2097154, CURLINFO_HEADER_SIZE = 2097163, | |
CURLINFO_REQUEST_SIZE = 2097164, CURLINFO_SSL_VERIFYRESULT = 2097165, | |
CURLINFO_FILETIME = 2097166, CURLINFO_REDIRECT_COUNT = 2097172, | |
CURLINFO_HTTP_CONNECTCODE = 2097174, CURLINFO_HTTPAUTH_AVAIL = 2097175, | |
CURLINFO_PROXYAUTH_AVAIL = 2097176, CURLINFO_OS_ERRNO = 2097177, | |
CURLINFO_NUM_CONNECTS = 2097178, CURLINFO_LASTSOCKET = 2097181, | |
CURLINFO_CONDITION_UNMET = 2097187, CURLINFO_RTSP_CLIENT_CSEQ = 2097189, | |
CURLINFO_RTSP_SERVER_CSEQ = 2097190, CURLINFO_RTSP_CSEQ_RECV = 2097191, | |
CURLINFO_PRIMARY_PORT = 2097192, CURLINFO_LOCAL_PORT = 2097194, | |
CURLINFO_HTTP_VERSION = 2097198, CURLINFO_PROXY_SSL_VERIFYRESULT = 2097199, | |
CURLINFO_PROTOCOL = 2097200, CURLINFO_PROXY_ERROR = 2097211, | |
CURLINFO_USED_PROXY = 2097218, CURLINFO_TOTAL_TIME = 3145731, | |
CURLINFO_NAMELOOKUP_TIME = 3145732, CURLINFO_CONNECT_TIME = 3145733, | |
CURLINFO_PRETRANSFER_TIME = 3145734, CURLINFO_SIZE_UPLOAD = 3145735, | |
CURLINFO_SIZE_DOWNLOAD = 3145736, CURLINFO_SPEED_DOWNLOAD = 3145737, | |
CURLINFO_SPEED_UPLOAD = 3145738, CURLINFO_CONTENT_LENGTH_DOWNLOAD = 3145743, | |
CURLINFO_CONTENT_LENGTH_UPLOAD = 3145744, | |
CURLINFO_STARTTRANSFER_TIME = 3145745, CURLINFO_REDIRECT_TIME = 3145747, | |
CURLINFO_APPCONNECT_TIME = 3145761, CURLINFO_SSL_ENGINES = 4194331, | |
CURLINFO_COOKIELIST = 4194332, CURLINFO_CERTINFO = 4194338, | |
CURLINFO_TLS_SESSION = 4194347, CURLINFO_TLS_SSL_PTR = 4194349, | |
CURLINFO_ACTIVESOCKET = 5242924, CURLINFO_SIZE_UPLOAD_T = 6291463, | |
CURLINFO_SIZE_DOWNLOAD_T = 6291464, CURLINFO_SPEED_DOWNLOAD_T = 6291465, | |
CURLINFO_SPEED_UPLOAD_T = 6291466, CURLINFO_FILETIME_T = 6291470, | |
CURLINFO_CONTENT_LENGTH_DOWNLOAD_T = 6291471, | |
CURLINFO_CONTENT_LENGTH_UPLOAD_T = 6291472, CURLINFO_TOTAL_TIME_T = 6291506, | |
CURLINFO_NAMELOOKUP_TIME_T = 6291507, CURLINFO_CONNECT_TIME_T = 6291508, | |
CURLINFO_PRETRANSFER_TIME_T = 6291509, | |
CURLINFO_STARTTRANSFER_TIME_T = 6291510, CURLINFO_REDIRECT_TIME_T = 6291511, | |
CURLINFO_APPCONNECT_TIME_T = 6291512, CURLINFO_RETRY_AFTER = 6291513, | |
CURLINFO_XFER_ID = 6291519, CURLINFO_CONN_ID = 6291520, | |
CURLINFO_QUEUE_TIME_T = 6291521, CURLINFO_POSTTRANSFER_TIME_T = 6291523, | |
CURLINFO_EARLYDATA_SENT_T = 6291524 | |
type | |
enum_curl_closepolicy_2566914408* {.size: sizeof(cuint).} = enum | |
CURLCLOSEPOLICY_NONE = 0, CURLCLOSEPOLICY_OLDEST = 1, | |
CURLCLOSEPOLICY_LEAST_RECENTLY_USED = 2, CURLCLOSEPOLICY_LEAST_TRAFFIC = 3, | |
CURLCLOSEPOLICY_SLOWEST = 4, CURLCLOSEPOLICY_CALLBACK = 5, | |
CURLCLOSEPOLICY_LAST = 6 | |
type | |
enum_curl_lock_data_2566914412* {.size: sizeof(cuint).} = enum | |
CURL_LOCK_DATA_NONE = 0, CURL_LOCK_DATA_SHARE = 1, | |
CURL_LOCK_DATA_COOKIE = 2, CURL_LOCK_DATA_DNS = 3, | |
CURL_LOCK_DATA_SSL_SESSION = 4, CURL_LOCK_DATA_CONNECT = 5, | |
CURL_LOCK_DATA_PSL = 6, CURL_LOCK_DATA_HSTS = 7, CURL_LOCK_DATA_LAST = 8 | |
type | |
enum_curl_lock_access_2566914416* {.size: sizeof(cuint).} = enum | |
CURL_LOCK_ACCESS_NONE = 0, CURL_LOCK_ACCESS_SHARED = 1, | |
CURL_LOCK_ACCESS_SINGLE = 2, CURL_LOCK_ACCESS_LAST = 3 | |
type | |
enum_CURLSHcode_2566914424* {.size: sizeof(cuint).} = enum | |
CURLSHE_OK = 0, CURLSHE_BAD_OPTION = 1, CURLSHE_IN_USE = 2, | |
CURLSHE_INVALID = 3, CURLSHE_NOMEM = 4, CURLSHE_NOT_BUILT_IN = 5, | |
CURLSHE_LAST = 6 | |
type | |
enum_CURLSHoption_2566914428* {.size: sizeof(cuint).} = enum | |
CURLSHOPT_NONE = 0, CURLSHOPT_SHARE = 1, CURLSHOPT_UNSHARE = 2, | |
CURLSHOPT_LOCKFUNC = 3, CURLSHOPT_UNLOCKFUNC = 4, CURLSHOPT_USERDATA = 5, | |
CURLSHOPT_LAST = 6 | |
type | |
enum_CURLversion_2566914432* {.size: sizeof(cuint).} = enum | |
CURLVERSION_FIRST = 0, CURLVERSION_SECOND = 1, CURLVERSION_THIRD = 2, | |
CURLVERSION_FOURTH = 3, CURLVERSION_FIFTH = 4, CURLVERSION_SIXTH = 5, | |
CURLVERSION_SEVENTH = 6, CURLVERSION_EIGHTH = 7, CURLVERSION_NINTH = 8, | |
CURLVERSION_TENTH = 9, CURLVERSION_ELEVENTH = 10, CURLVERSION_TWELFTH = 11, | |
CURLVERSION_LAST = 12 | |
when not declared(CURLAUTH_NEGOTIATE): | |
type | |
CURLAUTH_NEGOTIATE* = object | |
else: | |
static : | |
hint("Declaration of " & "CURLAUTH_NEGOTIATE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_GLOBAL_ALL): | |
type | |
CURL_GLOBAL_ALL* = object | |
else: | |
static : | |
hint("Declaration of " & "CURL_GLOBAL_ALL" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_mimepart): | |
type | |
struct_curl_mimepart* = object | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_mimepart" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_mime): | |
type | |
struct_curl_mime* = object | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_mime" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSH_AUTH_ANY): | |
type | |
CURLSSH_AUTH_ANY* = object | |
else: | |
static : | |
hint("Declaration of " & "CURLSSH_AUTH_ANY" & | |
" already exists, not redeclaring") | |
type | |
curl_usessl_2566914218 = enum_curl_usessl_2566914335 ## Generated based on /usr/include/curl/curl.h:909:3 | |
curl_socket_t_2566914224 = cint ## Generated based on /usr/include/curl/curl.h:146:13 | |
curl_sslbackend_2566914228 = enum_curl_sslbackend_2566914227 ## Generated based on /usr/include/curl/curl.h:169:3 | |
struct_curl_httppost_2566914230 {.pure, inheritable, bycopy.} = object | |
next*: ptr struct_curl_httppost_2566914231 ## Generated based on /usr/include/curl/curl.h:180:8 | |
name*: cstring | |
namelength*: clong | |
contents*: cstring | |
contentslength*: clong | |
buffer*: cstring | |
bufferlength*: clong | |
contenttype*: cstring | |
contentheader*: ptr struct_curl_slist_2566914233 | |
more*: ptr struct_curl_httppost_2566914231 | |
flags*: clong | |
showfilename*: cstring | |
userp*: pointer | |
contentlen*: curl_off_t_2566914235 | |
struct_curl_slist_2566914232 {.pure, inheritable, bycopy.} = object | |
data*: cstring ## Generated based on /usr/include/curl/curl.h:2757:8 | |
next*: ptr struct_curl_slist_2566914233 | |
curl_off_t_2566914234 = clong ## Generated based on /usr/include/curl/system.h:445:34 | |
curl_progress_callback_2566914236 = proc (a0: pointer; a1: cdouble; | |
a2: cdouble; a3: cdouble; a4: cdouble): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:231:15 | |
curl_xferinfo_callback_2566914238 = proc (a0: pointer; a1: curl_off_t_2566914235; | |
a2: curl_off_t_2566914235; a3: curl_off_t_2566914235; a4: curl_off_t_2566914235): cint {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:240:15 | |
curl_write_callback_2566914240 = proc (a0: cstring; a1: csize_t; a2: csize_t; | |
a3: pointer): csize_t {.cdecl.} ## Generated based on /usr/include/curl/curl.h:276:18 | |
curl_resolver_start_callback_2566914242 = proc (a0: pointer; a1: pointer; | |
a2: pointer): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:282:15 | |
curlfiletype_2566914246 = enum_curlfiletype_2566914245 ## Generated based on /usr/include/curl/curl.h:297:3 | |
struct_curl_fileinfo_strings_t {.pure, inheritable, bycopy.} = object | |
time*: cstring | |
perm*: cstring | |
user*: cstring | |
group*: cstring | |
target*: cstring | |
struct_curl_fileinfo_2566914248 {.pure, inheritable, bycopy.} = object | |
filename*: cstring ## Generated based on /usr/include/curl/curl.h:309:8 | |
filetype*: curlfiletype_2566914247 | |
time*: time_t_2566914251 | |
perm*: cuint | |
uid*: cint | |
gid*: cint | |
size*: curl_off_t_2566914235 | |
hardlinks*: clong | |
strings*: struct_curl_fileinfo_strings_t | |
flags*: cuint | |
b_data*: cstring | |
b_size*: csize_t | |
b_used*: csize_t | |
time_t_2566914250 = clong ## Generated based on /usr/include/bits/alltypes.h:85:16 | |
curl_chunk_bgn_callback_2566914252 = proc (a0: pointer; a1: pointer; a2: cint): clong {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:345:16 | |
curl_chunk_end_callback_2566914254 = proc (a0: pointer): clong {.cdecl.} ## Generated based on /usr/include/curl/curl.h:359:16 | |
curl_fnmatch_callback_2566914256 = proc (a0: pointer; a1: cstring; a2: cstring): cint {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:368:15 | |
curl_seek_callback_2566914258 = proc (a0: pointer; a1: curl_off_t_2566914235; | |
a2: cint): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:377:15 | |
curl_read_callback_2566914260 = proc (a0: cstring; a1: csize_t; a2: csize_t; | |
a3: pointer): csize_t {.cdecl.} ## Generated based on /usr/include/curl/curl.h:395:18 | |
curl_trailer_callback_2566914262 = proc (a0: ptr ptr struct_curl_slist_2566914233; | |
a1: pointer): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:400:15 | |
curlsocktype_2566914266 = enum_curlsocktype_2566914265 ## Generated based on /usr/include/curl/curl.h:407:3 | |
curl_sockopt_callback_2566914268 = proc (a0: pointer; a1: curl_socket_t_2566914225; | |
a2: curlsocktype_2566914267): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:416:15 | |
struct_curl_sockaddr_2566914270 {.pure, inheritable, bycopy.} = object | |
family*: cint ## Generated based on /usr/include/curl/curl.h:420:8 | |
socktype*: cint | |
protocol*: cint | |
addrlen*: cuint | |
addr_field*: struct_sockaddr_2566914273 | |
struct_sockaddr_2566914272 {.pure, inheritable, bycopy.} = object | |
sa_family*: sa_family_t_2566914441 ## Generated based on /usr/include/sys/socket.h:369:8 | |
sa_data*: array[14'i64, cschar] | |
curl_opensocket_callback_2566914274 = proc (a0: pointer; a1: curlsocktype_2566914267; | |
a2: ptr struct_curl_sockaddr_2566914271): curl_socket_t_2566914225 {.cdecl.} ## Generated based on /usr/include/curl/curl.h:431:3 | |
curl_closesocket_callback_2566914276 = proc (a0: pointer; a1: curl_socket_t_2566914225): cint {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:436:3 | |
curlioerr_2566914280 = enum_curlioerr_2566914279 ## Generated based on /usr/include/curl/curl.h:443:3 | |
curliocmd_2566914284 = enum_curliocmd_2566914283 ## Generated based on /usr/include/curl/curl.h:449:3 | |
curl_ioctl_callback_2566914286 = proc (a0: pointer; a1: cint; a2: pointer): curlioerr_2566914281 {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:451:21 | |
curl_malloc_callback_2566914288 = proc (a0: csize_t): pointer {.cdecl.} ## Generated based on /usr/include/curl/curl.h:462:17 | |
curl_free_callback_2566914290 = proc (a0: pointer): void {.cdecl.} ## Generated based on /usr/include/curl/curl.h:463:16 | |
curl_realloc_callback_2566914292 = proc (a0: pointer; a1: csize_t): pointer {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:464:17 | |
curl_strdup_callback_2566914294 = proc (a0: cstring): cstring {.cdecl.} ## Generated based on /usr/include/curl/curl.h:465:17 | |
curl_calloc_callback_2566914296 = proc (a0: csize_t; a1: csize_t): pointer {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:466:17 | |
curl_infotype_2566914300 = enum_curl_infotype_2566914299 ## Generated based on /usr/include/curl/curl.h:481:3 | |
curl_debug_callback_2566914302 = proc (a0: pointer; a1: curl_infotype_2566914301; | |
a2: cstring; a3: csize_t; a4: pointer): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:483:15 | |
curl_prereq_callback_2566914304 = proc (a0: pointer; a1: cstring; a2: cstring; | |
a3: cint; a4: cint): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:491:15 | |
CURLcode_2566914308 = enum_CURLcode_2566914307 ## Generated based on /usr/include/curl/curl.h:641:3 | |
CURLproxycode_2566914312 = enum_CURLproxycode_2566914311 ## Generated based on /usr/include/curl/curl.h:765:3 | |
curl_conv_callback_2566914314 = proc (a0: cstring; a1: csize_t): CURLcode_2566914309 {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:768:20 | |
curl_ssl_ctx_callback_2566914316 = proc (a0: pointer; a1: pointer; a2: pointer): CURLcode_2566914309 {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:770:20 | |
curl_proxytype_2566914320 = enum_curl_proxytype_2566914319 ## Generated based on /usr/include/curl/curl.h:791:3 | |
struct_curl_khkey_2566914324 {.pure, inheritable, bycopy.} = object | |
key*: cstring ## Generated based on /usr/include/curl/curl.h:856:8 | |
len*: csize_t | |
keytype*: enum_curl_khtype_2566914323 | |
curl_sshkeycallback_2566914330 = proc (a0: pointer; a1: ptr struct_curl_khkey_2566914325; | |
a2: ptr struct_curl_khkey_2566914325; a3: enum_curl_khmatch_2566914329; | |
a4: pointer): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:885:5 | |
curl_sshhostkeycallback_2566914332 = proc (a0: pointer; a1: cint; a2: cstring; | |
a3: csize_t): cint {.cdecl.} ## Generated based on /usr/include/curl/curl.h:893:5 | |
curl_ftpccc_2566914338 = enum_curl_ftpccc_2566914337 ## Generated based on /usr/include/curl/curl.h:972:3 | |
curl_ftpauth_2566914342 = enum_curl_ftpauth_2566914341 ## Generated based on /usr/include/curl/curl.h:980:3 | |
curl_ftpcreatedir_2566914346 = enum_curl_ftpcreatedir_2566914345 ## Generated based on /usr/include/curl/curl.h:991:3 | |
curl_ftpmethod_2566914350 = enum_curl_ftpmethod_2566914349 ## Generated based on /usr/include/curl/curl.h:1000:3 | |
struct_curl_hstsentry_2566914352 {.pure, inheritable, bycopy.} = object | |
name*: cstring ## Generated based on /usr/include/curl/curl.h:1013:8 | |
namelen*: csize_t | |
includeSubDomains* {.bitsize: 1'i64.}: cuint | |
expire*: array[18'i64, cschar] | |
struct_curl_index_2566914354 {.pure, inheritable, bycopy.} = object | |
index*: csize_t ## Generated based on /usr/include/curl/curl.h:1020:8 | |
total*: csize_t | |
CURLSTScode_2566914358 = enum_CURLSTScode_2566914357 ## Generated based on /usr/include/curl/curl.h:1029:3 | |
curl_hstsread_callback_2566914360 = proc (a0: pointer; | |
a1: ptr struct_curl_hstsentry_2566914353; a2: pointer): CURLSTScode_2566914359 {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:1031:23 | |
curl_hstswrite_callback_2566914362 = proc (a0: pointer; | |
a1: ptr struct_curl_hstsentry_2566914353; a2: ptr struct_curl_index_2566914355; | |
a3: pointer): CURLSTScode_2566914359 {.cdecl.} ## Generated based on /usr/include/curl/curl.h:1034:23 | |
CURLoption_2566914366 = enum_CURLoption_2566914365 ## Generated based on /usr/include/curl/curl.h:2226:3 | |
curl_TimeCond_2566914374 = enum_curl_TimeCond_2566914373 ## Generated based on /usr/include/curl/curl.h:2377:3 | |
curl_mime_2566914376 = struct_curl_mime ## Generated based on /usr/include/curl/curl.h:2388:31 | |
curl_mimepart_2566914378 = struct_curl_mimepart ## Generated based on /usr/include/curl/curl.h:2389:31 | |
CURLformoption_2566914382 = enum_CURLformoption_2566914381 ## Generated based on /usr/include/curl/curl.h:2544:3 | |
struct_curl_forms_2566914384 {.pure, inheritable, bycopy.} = object | |
option*: CURLformoption_2566914383 ## Generated based on /usr/include/curl/curl.h:2547:8 | |
value*: cstring | |
CURLFORMcode_2566914388 = enum_CURLFORMcode_2566914387 ## Generated based on /usr/include/curl/curl.h:2581:3 | |
curl_formget_callback_2566914390 = proc (a0: pointer; a1: cstring; a2: csize_t): csize_t {. | |
cdecl.} ## Generated based on /usr/include/curl/curl.h:2605:18 | |
struct_curl_ssl_backend_2566914392 {.pure, inheritable, bycopy.} = object | |
id*: curl_sslbackend_2566914229 ## Generated based on /usr/include/curl/curl.h:2788:8 | |
name*: cstring | |
curl_ssl_backend_typedef_2566914394 = struct_curl_ssl_backend_2566914393 ## Generated based on /usr/include/curl/curl.h:2792:33 | |
CURLsslset_2566914398 = enum_CURLsslset_2566914397 ## Generated based on /usr/include/curl/curl.h:2799:3 | |
struct_curl_certinfo_2566914400 {.pure, inheritable, bycopy.} = object | |
num_of_certs*: cint ## Generated based on /usr/include/curl/curl.h:2837:8 | |
certinfo*: ptr ptr struct_curl_slist_2566914233 | |
struct_curl_tlssessioninfo_2566914402 {.pure, inheritable, bycopy.} = object | |
backend*: curl_sslbackend_2566914229 ## Generated based on /usr/include/curl/curl.h:2848:8 | |
internals*: pointer | |
CURLINFO_2566914406 = enum_CURLINFO_2566914405 ## Generated based on /usr/include/curl/curl.h:2957:3 | |
curl_closepolicy_2566914410 = enum_curl_closepolicy_2566914409 ## Generated based on /usr/include/curl/curl.h:2973:3 | |
curl_lock_data_2566914414 = enum_curl_lock_data_2566914413 ## Generated based on /usr/include/curl/curl.h:3002:3 | |
curl_lock_access_2566914418 = enum_curl_lock_access_2566914417 ## Generated based on /usr/include/curl/curl.h:3010:3 | |
curl_lock_function_2566914420 = proc (a0: pointer; a1: curl_lock_data_2566914415; | |
a2: curl_lock_access_2566914419; | |
a3: pointer): void {.cdecl.} ## Generated based on /usr/include/curl/curl.h:3012:16 | |
curl_unlock_function_2566914422 = proc (a0: pointer; a1: curl_lock_data_2566914415; | |
a2: pointer): void {.cdecl.} ## Generated based on /usr/include/curl/curl.h:3016:16 | |
CURLSHcode_2566914426 = enum_CURLSHcode_2566914425 ## Generated based on /usr/include/curl/curl.h:3029:3 | |
CURLSHoption_2566914430 = enum_CURLSHoption_2566914429 ## Generated based on /usr/include/curl/curl.h:3040:3 | |
CURLversion_2566914434 = enum_CURLversion_2566914433 ## Generated based on /usr/include/curl/curl.h:3065:3 | |
struct_curl_version_info_data_2566914436 {.pure, inheritable, bycopy.} = object | |
age*: CURLversion_2566914435 ## Generated based on /usr/include/curl/curl.h:3074:8 | |
version*: cstring | |
version_num*: cuint | |
host*: cstring | |
features*: cint | |
ssl_version*: cstring | |
ssl_version_num*: clong | |
libz_version*: cstring | |
protocols*: ptr cstring | |
ares*: cstring | |
ares_num*: cint | |
libidn*: cstring | |
iconv_ver_num*: cint | |
libssh_version*: cstring | |
brotli_ver_num*: cuint | |
brotli_version*: cstring | |
nghttp2_ver_num*: cuint | |
nghttp2_version*: cstring | |
quic_version*: cstring | |
cainfo*: cstring | |
capath*: cstring | |
zstd_ver_num*: cuint | |
zstd_version*: cstring | |
hyper_version*: cstring | |
gsasl_version*: cstring | |
feature_names*: ptr cstring | |
rtmp_version*: cstring | |
curl_version_info_data_2566914438 = struct_curl_version_info_data_2566914437 ## Generated based on /usr/include/curl/curl.h:3136:39 | |
sa_family_t_2566914440 = cushort ## Generated based on /usr/include/bits/alltypes.h:372:24 | |
curl_opensocket_callback_2566914275 = (when declared(curl_opensocket_callback): | |
when ownSizeof(curl_opensocket_callback) != | |
ownSizeof(curl_opensocket_callback_2566914274): | |
static : | |
warning("Declaration of " & "curl_opensocket_callback" & | |
" exists but with different size") | |
curl_opensocket_callback | |
else: | |
curl_opensocket_callback_2566914274) | |
curl_sshhostkeycallback_2566914333 = (when declared(curl_sshhostkeycallback): | |
when ownSizeof(curl_sshhostkeycallback) != | |
ownSizeof(curl_sshhostkeycallback_2566914332): | |
static : | |
warning("Declaration of " & "curl_sshhostkeycallback" & | |
" exists but with different size") | |
curl_sshhostkeycallback | |
else: | |
curl_sshhostkeycallback_2566914332) | |
curl_write_callback_2566914241 = (when declared(curl_write_callback): | |
when ownSizeof(curl_write_callback) != ownSizeof(curl_write_callback_2566914240): | |
static : | |
warning("Declaration of " & "curl_write_callback" & | |
" exists but with different size") | |
curl_write_callback | |
else: | |
curl_write_callback_2566914240) | |
curl_debug_callback_2566914303 = (when declared(curl_debug_callback): | |
when ownSizeof(curl_debug_callback) != ownSizeof(curl_debug_callback_2566914302): | |
static : | |
warning("Declaration of " & "curl_debug_callback" & | |
" exists but with different size") | |
curl_debug_callback | |
else: | |
curl_debug_callback_2566914302) | |
curl_closesocket_callback_2566914277 = (when declared( | |
curl_closesocket_callback): | |
when ownSizeof(curl_closesocket_callback) != | |
ownSizeof(curl_closesocket_callback_2566914276): | |
static : | |
warning("Declaration of " & "curl_closesocket_callback" & | |
" exists but with different size") | |
curl_closesocket_callback | |
else: | |
curl_closesocket_callback_2566914276) | |
enum_curlioerr_2566914279 = (when declared(enum_curlioerr): | |
when ownSizeof(enum_curlioerr) != ownSizeof(enum_curlioerr_2566914278): | |
static : | |
warning("Declaration of " & "enum_curlioerr" & | |
" exists but with different size") | |
enum_curlioerr | |
else: | |
enum_curlioerr_2566914278) | |
curl_strdup_callback_2566914295 = (when declared(curl_strdup_callback): | |
when ownSizeof(curl_strdup_callback) != ownSizeof(curl_strdup_callback_2566914294): | |
static : | |
warning("Declaration of " & "curl_strdup_callback" & | |
" exists but with different size") | |
curl_strdup_callback | |
else: | |
curl_strdup_callback_2566914294) | |
curl_ftpccc_2566914339 = (when declared(curl_ftpccc): | |
when ownSizeof(curl_ftpccc) != ownSizeof(curl_ftpccc_2566914338): | |
static : | |
warning("Declaration of " & "curl_ftpccc" & | |
" exists but with different size") | |
curl_ftpccc | |
else: | |
curl_ftpccc_2566914338) | |
CURLSTScode_2566914359 = (when declared(CURLSTScode): | |
when ownSizeof(CURLSTScode) != ownSizeof(CURLSTScode_2566914358): | |
static : | |
warning("Declaration of " & "CURLSTScode" & | |
" exists but with different size") | |
CURLSTScode | |
else: | |
CURLSTScode_2566914358) | |
CURLSHcode_2566914427 = (when declared(CURLSHcode): | |
when ownSizeof(CURLSHcode) != ownSizeof(CURLSHcode_2566914426): | |
static : | |
warning("Declaration of " & "CURLSHcode" & | |
" exists but with different size") | |
CURLSHcode | |
else: | |
CURLSHcode_2566914426) | |
enum_curlfiletype_2566914245 = (when declared(enum_curlfiletype): | |
when ownSizeof(enum_curlfiletype) != ownSizeof(enum_curlfiletype_2566914244): | |
static : | |
warning("Declaration of " & "enum_curlfiletype" & | |
" exists but with different size") | |
enum_curlfiletype | |
else: | |
enum_curlfiletype_2566914244) | |
curl_hstswrite_callback_2566914363 = (when declared(curl_hstswrite_callback): | |
when ownSizeof(curl_hstswrite_callback) != | |
ownSizeof(curl_hstswrite_callback_2566914362): | |
static : | |
warning("Declaration of " & "curl_hstswrite_callback" & | |
" exists but with different size") | |
curl_hstswrite_callback | |
else: | |
curl_hstswrite_callback_2566914362) | |
enum_CURL_TLSAUTH_2566914371 = (when declared(enum_CURL_TLSAUTH): | |
when ownSizeof(enum_CURL_TLSAUTH) != ownSizeof(enum_CURL_TLSAUTH_2566914370): | |
static : | |
warning("Declaration of " & "enum_CURL_TLSAUTH" & | |
" exists but with different size") | |
enum_CURL_TLSAUTH | |
else: | |
enum_CURL_TLSAUTH_2566914370) | |
struct_curl_version_info_data_2566914437 = (when declared( | |
struct_curl_version_info_data): | |
when ownSizeof(struct_curl_version_info_data) != | |
ownSizeof(struct_curl_version_info_data_2566914436): | |
static : | |
warning("Declaration of " & "struct_curl_version_info_data" & | |
" exists but with different size") | |
struct_curl_version_info_data | |
else: | |
struct_curl_version_info_data_2566914436) | |
enum_CURLcode_2566914307 = (when declared(enum_CURLcode): | |
when ownSizeof(enum_CURLcode) != ownSizeof(enum_CURLcode_2566914306): | |
static : | |
warning("Declaration of " & "enum_CURLcode" & | |
" exists but with different size") | |
enum_CURLcode | |
else: | |
enum_CURLcode_2566914306) | |
curl_prereq_callback_2566914305 = (when declared(curl_prereq_callback): | |
when ownSizeof(curl_prereq_callback) != ownSizeof(curl_prereq_callback_2566914304): | |
static : | |
warning("Declaration of " & "curl_prereq_callback" & | |
" exists but with different size") | |
curl_prereq_callback | |
else: | |
curl_prereq_callback_2566914304) | |
CURLcode_2566914309 = (when declared(CURLcode): | |
when ownSizeof(CURLcode) != ownSizeof(CURLcode_2566914308): | |
static : | |
warning("Declaration of " & "CURLcode" & | |
" exists but with different size") | |
CURLcode | |
else: | |
CURLcode_2566914308) | |
enum_curl_khtype_2566914323 = (when declared(enum_curl_khtype): | |
when ownSizeof(enum_curl_khtype) != ownSizeof(enum_curl_khtype_2566914322): | |
static : | |
warning("Declaration of " & "enum_curl_khtype" & | |
" exists but with different size") | |
enum_curl_khtype | |
else: | |
enum_curl_khtype_2566914322) | |
struct_curl_httppost_2566914231 = (when declared(struct_curl_httppost): | |
when ownSizeof(struct_curl_httppost) != ownSizeof(struct_curl_httppost_2566914230): | |
static : | |
warning("Declaration of " & "struct_curl_httppost" & | |
" exists but with different size") | |
struct_curl_httppost | |
else: | |
struct_curl_httppost_2566914230) | |
CURLFORMcode_2566914389 = (when declared(CURLFORMcode): | |
when ownSizeof(CURLFORMcode) != ownSizeof(CURLFORMcode_2566914388): | |
static : | |
warning("Declaration of " & "CURLFORMcode" & | |
" exists but with different size") | |
CURLFORMcode | |
else: | |
CURLFORMcode_2566914388) | |
curlsocktype_2566914267 = (when declared(curlsocktype): | |
when ownSizeof(curlsocktype) != ownSizeof(curlsocktype_2566914266): | |
static : | |
warning("Declaration of " & "curlsocktype" & | |
" exists but with different size") | |
curlsocktype | |
else: | |
curlsocktype_2566914266) | |
curl_sockopt_callback_2566914269 = (when declared(curl_sockopt_callback): | |
when ownSizeof(curl_sockopt_callback) != ownSizeof(curl_sockopt_callback_2566914268): | |
static : | |
warning("Declaration of " & "curl_sockopt_callback" & | |
" exists but with different size") | |
curl_sockopt_callback | |
else: | |
curl_sockopt_callback_2566914268) | |
enum_CURLsslset_2566914397 = (when declared(enum_CURLsslset): | |
when ownSizeof(enum_CURLsslset) != ownSizeof(enum_CURLsslset_2566914396): | |
static : | |
warning("Declaration of " & "enum_CURLsslset" & | |
" exists but with different size") | |
enum_CURLsslset | |
else: | |
enum_CURLsslset_2566914396) | |
curl_off_t_2566914235 = (when declared(curl_off_t): | |
when ownSizeof(curl_off_t) != ownSizeof(curl_off_t_2566914234): | |
static : | |
warning("Declaration of " & "curl_off_t" & | |
" exists but with different size") | |
curl_off_t | |
else: | |
curl_off_t_2566914234) | |
enum_curlsocktype_2566914265 = (when declared(enum_curlsocktype): | |
when ownSizeof(enum_curlsocktype) != ownSizeof(enum_curlsocktype_2566914264): | |
static : | |
warning("Declaration of " & "enum_curlsocktype" & | |
" exists but with different size") | |
enum_curlsocktype | |
else: | |
enum_curlsocktype_2566914264) | |
curl_mimepart_2566914379 = (when declared(curl_mimepart): | |
when ownSizeof(curl_mimepart) != ownSizeof(curl_mimepart_2566914378): | |
static : | |
warning("Declaration of " & "curl_mimepart" & | |
" exists but with different size") | |
curl_mimepart | |
else: | |
curl_mimepart_2566914378) | |
enum_curl_proxytype_2566914319 = (when declared(enum_curl_proxytype): | |
when ownSizeof(enum_curl_proxytype) != ownSizeof(enum_curl_proxytype_2566914318): | |
static : | |
warning("Declaration of " & "enum_curl_proxytype" & | |
" exists but with different size") | |
enum_curl_proxytype | |
else: | |
enum_curl_proxytype_2566914318) | |
struct_curl_index_2566914355 = (when declared(struct_curl_index): | |
when ownSizeof(struct_curl_index) != ownSizeof(struct_curl_index_2566914354): | |
static : | |
warning("Declaration of " & "struct_curl_index" & | |
" exists but with different size") | |
struct_curl_index | |
else: | |
struct_curl_index_2566914354) | |
enum_curl_lock_data_2566914413 = (when declared(enum_curl_lock_data): | |
when ownSizeof(enum_curl_lock_data) != ownSizeof(enum_curl_lock_data_2566914412): | |
static : | |
warning("Declaration of " & "enum_curl_lock_data" & | |
" exists but with different size") | |
enum_curl_lock_data | |
else: | |
enum_curl_lock_data_2566914412) | |
struct_curl_fileinfo_2566914249 = (when declared(struct_curl_fileinfo): | |
when ownSizeof(struct_curl_fileinfo) != ownSizeof(struct_curl_fileinfo_2566914248): | |
static : | |
warning("Declaration of " & "struct_curl_fileinfo" & | |
" exists but with different size") | |
struct_curl_fileinfo | |
else: | |
struct_curl_fileinfo_2566914248) | |
curl_resolver_start_callback_2566914243 = (when declared( | |
curl_resolver_start_callback): | |
when ownSizeof(curl_resolver_start_callback) != | |
ownSizeof(curl_resolver_start_callback_2566914242): | |
static : | |
warning("Declaration of " & "curl_resolver_start_callback" & | |
" exists but with different size") | |
curl_resolver_start_callback | |
else: | |
curl_resolver_start_callback_2566914242) | |
curl_lock_data_2566914415 = (when declared(curl_lock_data): | |
when ownSizeof(curl_lock_data) != ownSizeof(curl_lock_data_2566914414): | |
static : | |
warning("Declaration of " & "curl_lock_data" & | |
" exists but with different size") | |
curl_lock_data | |
else: | |
curl_lock_data_2566914414) | |
curl_version_info_data_2566914439 = (when declared(curl_version_info_data): | |
when ownSizeof(curl_version_info_data) != ownSizeof(curl_version_info_data_2566914438): | |
static : | |
warning("Declaration of " & "curl_version_info_data" & | |
" exists but with different size") | |
curl_version_info_data | |
else: | |
curl_version_info_data_2566914438) | |
enum_CURL_NETRC_OPTION_2566914369 = (when declared(enum_CURL_NETRC_OPTION): | |
when ownSizeof(enum_CURL_NETRC_OPTION) != ownSizeof(enum_CURL_NETRC_OPTION_2566914368): | |
static : | |
warning("Declaration of " & "enum_CURL_NETRC_OPTION" & | |
" exists but with different size") | |
enum_CURL_NETRC_OPTION | |
else: | |
enum_CURL_NETRC_OPTION_2566914368) | |
CURLoption_2566914367 = (when declared(CURLoption): | |
when ownSizeof(CURLoption) != ownSizeof(CURLoption_2566914366): | |
static : | |
warning("Declaration of " & "CURLoption" & | |
" exists but with different size") | |
CURLoption | |
else: | |
CURLoption_2566914366) | |
struct_curl_certinfo_2566914401 = (when declared(struct_curl_certinfo): | |
when ownSizeof(struct_curl_certinfo) != ownSizeof(struct_curl_certinfo_2566914400): | |
static : | |
warning("Declaration of " & "struct_curl_certinfo" & | |
" exists but with different size") | |
struct_curl_certinfo | |
else: | |
struct_curl_certinfo_2566914400) | |
curliocmd_2566914285 = (when declared(curliocmd): | |
when ownSizeof(curliocmd) != ownSizeof(curliocmd_2566914284): | |
static : | |
warning("Declaration of " & "curliocmd" & | |
" exists but with different size") | |
curliocmd | |
else: | |
curliocmd_2566914284) | |
CURLproxycode_2566914313 = (when declared(CURLproxycode): | |
when ownSizeof(CURLproxycode) != ownSizeof(CURLproxycode_2566914312): | |
static : | |
warning("Declaration of " & "CURLproxycode" & | |
" exists but with different size") | |
CURLproxycode | |
else: | |
CURLproxycode_2566914312) | |
curl_unlock_function_2566914423 = (when declared(curl_unlock_function): | |
when ownSizeof(curl_unlock_function) != ownSizeof(curl_unlock_function_2566914422): | |
static : | |
warning("Declaration of " & "curl_unlock_function" & | |
" exists but with different size") | |
curl_unlock_function | |
else: | |
curl_unlock_function_2566914422) | |
enum_curl_ftpmethod_2566914349 = (when declared(enum_curl_ftpmethod): | |
when ownSizeof(enum_curl_ftpmethod) != ownSizeof(enum_curl_ftpmethod_2566914348): | |
static : | |
warning("Declaration of " & "enum_curl_ftpmethod" & | |
" exists but with different size") | |
enum_curl_ftpmethod | |
else: | |
enum_curl_ftpmethod_2566914348) | |
curl_free_callback_2566914291 = (when declared(curl_free_callback): | |
when ownSizeof(curl_free_callback) != ownSizeof(curl_free_callback_2566914290): | |
static : | |
warning("Declaration of " & "curl_free_callback" & | |
" exists but with different size") | |
curl_free_callback | |
else: | |
curl_free_callback_2566914290) | |
struct_curl_hstsentry_2566914353 = (when declared(struct_curl_hstsentry): | |
when ownSizeof(struct_curl_hstsentry) != ownSizeof(struct_curl_hstsentry_2566914352): | |
static : | |
warning("Declaration of " & "struct_curl_hstsentry" & | |
" exists but with different size") | |
struct_curl_hstsentry | |
else: | |
struct_curl_hstsentry_2566914352) | |
struct_curl_ssl_backend_2566914393 = (when declared(struct_curl_ssl_backend): | |
when ownSizeof(struct_curl_ssl_backend) != | |
ownSizeof(struct_curl_ssl_backend_2566914392): | |
static : | |
warning("Declaration of " & "struct_curl_ssl_backend" & | |
" exists but with different size") | |
struct_curl_ssl_backend | |
else: | |
struct_curl_ssl_backend_2566914392) | |
curl_seek_callback_2566914259 = (when declared(curl_seek_callback): | |
when ownSizeof(curl_seek_callback) != ownSizeof(curl_seek_callback_2566914258): | |
static : | |
warning("Declaration of " & "curl_seek_callback" & | |
" exists but with different size") | |
curl_seek_callback | |
else: | |
curl_seek_callback_2566914258) | |
curl_usessl_2566914219 = (when declared(curl_usessl): | |
when ownSizeof(curl_usessl) != ownSizeof(curl_usessl_2566914218): | |
static : | |
warning("Declaration of " & "curl_usessl" & | |
" exists but with different size") | |
curl_usessl | |
else: | |
curl_usessl_2566914218) | |
curl_chunk_bgn_callback_2566914253 = (when declared(curl_chunk_bgn_callback): | |
when ownSizeof(curl_chunk_bgn_callback) != | |
ownSizeof(curl_chunk_bgn_callback_2566914252): | |
static : | |
warning("Declaration of " & "curl_chunk_bgn_callback" & | |
" exists but with different size") | |
curl_chunk_bgn_callback | |
else: | |
curl_chunk_bgn_callback_2566914252) | |
enum_CURLFORMcode_2566914387 = (when declared(enum_CURLFORMcode): | |
when ownSizeof(enum_CURLFORMcode) != ownSizeof(enum_CURLFORMcode_2566914386): | |
static : | |
warning("Declaration of " & "enum_CURLFORMcode" & | |
" exists but with different size") | |
enum_CURLFORMcode | |
else: | |
enum_CURLFORMcode_2566914386) | |
enum_curl_closepolicy_2566914409 = (when declared(enum_curl_closepolicy): | |
when ownSizeof(enum_curl_closepolicy) != ownSizeof(enum_curl_closepolicy_2566914408): | |
static : | |
warning("Declaration of " & "enum_curl_closepolicy" & | |
" exists but with different size") | |
enum_curl_closepolicy | |
else: | |
enum_curl_closepolicy_2566914408) | |
enum_CURLSTScode_2566914357 = (when declared(enum_CURLSTScode): | |
when ownSizeof(enum_CURLSTScode) != ownSizeof(enum_CURLSTScode_2566914356): | |
static : | |
warning("Declaration of " & "enum_CURLSTScode" & | |
" exists but with different size") | |
enum_CURLSTScode | |
else: | |
enum_CURLSTScode_2566914356) | |
time_t_2566914251 = (when declared(time_t): | |
when ownSizeof(time_t) != ownSizeof(time_t_2566914250): | |
static : | |
warning("Declaration of " & "time_t" & " exists but with different size") | |
time_t | |
else: | |
time_t_2566914250) | |
enum_CURLoption_2566914365 = (when declared(enum_CURLoption): | |
when ownSizeof(enum_CURLoption) != ownSizeof(enum_CURLoption_2566914364): | |
static : | |
warning("Declaration of " & "enum_CURLoption" & | |
" exists but with different size") | |
enum_CURLoption | |
else: | |
enum_CURLoption_2566914364) | |
enum_CURLversion_2566914433 = (when declared(enum_CURLversion): | |
when ownSizeof(enum_CURLversion) != ownSizeof(enum_CURLversion_2566914432): | |
static : | |
warning("Declaration of " & "enum_CURLversion" & | |
" exists but with different size") | |
enum_CURLversion | |
else: | |
enum_CURLversion_2566914432) | |
struct_curl_sockaddr_2566914271 = (when declared(struct_curl_sockaddr): | |
when ownSizeof(struct_curl_sockaddr) != ownSizeof(struct_curl_sockaddr_2566914270): | |
static : | |
warning("Declaration of " & "struct_curl_sockaddr" & | |
" exists but with different size") | |
struct_curl_sockaddr | |
else: | |
struct_curl_sockaddr_2566914270) | |
enum_CURLSHcode_2566914425 = (when declared(enum_CURLSHcode): | |
when ownSizeof(enum_CURLSHcode) != ownSizeof(enum_CURLSHcode_2566914424): | |
static : | |
warning("Declaration of " & "enum_CURLSHcode" & | |
" exists but with different size") | |
enum_CURLSHcode | |
else: | |
enum_CURLSHcode_2566914424) | |
curl_malloc_callback_2566914289 = (when declared(curl_malloc_callback): | |
when ownSizeof(curl_malloc_callback) != ownSizeof(curl_malloc_callback_2566914288): | |
static : | |
warning("Declaration of " & "curl_malloc_callback" & | |
" exists but with different size") | |
curl_malloc_callback | |
else: | |
curl_malloc_callback_2566914288) | |
enum_CURLproxycode_2566914311 = (when declared(enum_CURLproxycode): | |
when ownSizeof(enum_CURLproxycode) != ownSizeof(enum_CURLproxycode_2566914310): | |
static : | |
warning("Declaration of " & "enum_CURLproxycode" & | |
" exists but with different size") | |
enum_CURLproxycode | |
else: | |
enum_CURLproxycode_2566914310) | |
curl_fnmatch_callback_2566914257 = (when declared(curl_fnmatch_callback): | |
when ownSizeof(curl_fnmatch_callback) != ownSizeof(curl_fnmatch_callback_2566914256): | |
static : | |
warning("Declaration of " & "curl_fnmatch_callback" & | |
" exists but with different size") | |
curl_fnmatch_callback | |
else: | |
curl_fnmatch_callback_2566914256) | |
curl_sshkeycallback_2566914331 = (when declared(curl_sshkeycallback): | |
when ownSizeof(curl_sshkeycallback) != ownSizeof(curl_sshkeycallback_2566914330): | |
static : | |
warning("Declaration of " & "curl_sshkeycallback" & | |
" exists but with different size") | |
curl_sshkeycallback | |
else: | |
curl_sshkeycallback_2566914330) | |
curl_TimeCond_2566914375 = (when declared(curl_TimeCond): | |
when ownSizeof(curl_TimeCond) != ownSizeof(curl_TimeCond_2566914374): | |
static : | |
warning("Declaration of " & "curl_TimeCond" & | |
" exists but with different size") | |
curl_TimeCond | |
else: | |
curl_TimeCond_2566914374) | |
enum_curl_ftpcreatedir_2566914345 = (when declared(enum_curl_ftpcreatedir): | |
when ownSizeof(enum_curl_ftpcreatedir) != ownSizeof(enum_curl_ftpcreatedir_2566914344): | |
static : | |
warning("Declaration of " & "enum_curl_ftpcreatedir" & | |
" exists but with different size") | |
enum_curl_ftpcreatedir | |
else: | |
enum_curl_ftpcreatedir_2566914344) | |
curl_conv_callback_2566914315 = (when declared(curl_conv_callback): | |
when ownSizeof(curl_conv_callback) != ownSizeof(curl_conv_callback_2566914314): | |
static : | |
warning("Declaration of " & "curl_conv_callback" & | |
" exists but with different size") | |
curl_conv_callback | |
else: | |
curl_conv_callback_2566914314) | |
enum_curl_usessl_2566914335 = (when declared(enum_curl_usessl): | |
when ownSizeof(enum_curl_usessl) != ownSizeof(enum_curl_usessl_2566914334): | |
static : | |
warning("Declaration of " & "enum_curl_usessl" & | |
" exists but with different size") | |
enum_curl_usessl | |
else: | |
enum_curl_usessl_2566914334) | |
enum_curl_lock_access_2566914417 = (when declared(enum_curl_lock_access): | |
when ownSizeof(enum_curl_lock_access) != ownSizeof(enum_curl_lock_access_2566914416): | |
static : | |
warning("Declaration of " & "enum_curl_lock_access" & | |
" exists but with different size") | |
enum_curl_lock_access | |
else: | |
enum_curl_lock_access_2566914416) | |
curl_proxytype_2566914321 = (when declared(curl_proxytype): | |
when ownSizeof(curl_proxytype) != ownSizeof(curl_proxytype_2566914320): | |
static : | |
warning("Declaration of " & "curl_proxytype" & | |
" exists but with different size") | |
curl_proxytype | |
else: | |
curl_proxytype_2566914320) | |
CURLINFO_2566914407 = (when declared(CURLINFO): | |
when ownSizeof(CURLINFO) != ownSizeof(CURLINFO_2566914406): | |
static : | |
warning("Declaration of " & "CURLINFO" & | |
" exists but with different size") | |
CURLINFO | |
else: | |
CURLINFO_2566914406) | |
curl_lock_function_2566914421 = (when declared(curl_lock_function): | |
when ownSizeof(curl_lock_function) != ownSizeof(curl_lock_function_2566914420): | |
static : | |
warning("Declaration of " & "curl_lock_function" & | |
" exists but with different size") | |
curl_lock_function | |
else: | |
curl_lock_function_2566914420) | |
curl_closepolicy_2566914411 = (when declared(curl_closepolicy): | |
when ownSizeof(curl_closepolicy) != ownSizeof(curl_closepolicy_2566914410): | |
static : | |
warning("Declaration of " & "curl_closepolicy" & | |
" exists but with different size") | |
curl_closepolicy | |
else: | |
curl_closepolicy_2566914410) | |
enum_CURLSHoption_2566914429 = (when declared(enum_CURLSHoption): | |
when ownSizeof(enum_CURLSHoption) != ownSizeof(enum_CURLSHoption_2566914428): | |
static : | |
warning("Declaration of " & "enum_CURLSHoption" & | |
" exists but with different size") | |
enum_CURLSHoption | |
else: | |
enum_CURLSHoption_2566914428) | |
enum_curliocmd_2566914283 = (when declared(enum_curliocmd): | |
when ownSizeof(enum_curliocmd) != ownSizeof(enum_curliocmd_2566914282): | |
static : | |
warning("Declaration of " & "enum_curliocmd" & | |
" exists but with different size") | |
enum_curliocmd | |
else: | |
enum_curliocmd_2566914282) | |
struct_curl_slist_2566914233 = (when declared(struct_curl_slist): | |
when ownSizeof(struct_curl_slist) != ownSizeof(struct_curl_slist_2566914232): | |
static : | |
warning("Declaration of " & "struct_curl_slist" & | |
" exists but with different size") | |
struct_curl_slist | |
else: | |
struct_curl_slist_2566914232) | |
curl_infotype_2566914301 = (when declared(curl_infotype): | |
when ownSizeof(curl_infotype) != ownSizeof(curl_infotype_2566914300): | |
static : | |
warning("Declaration of " & "curl_infotype" & | |
" exists but with different size") | |
curl_infotype | |
else: | |
curl_infotype_2566914300) | |
curl_ioctl_callback_2566914287 = (when declared(curl_ioctl_callback): | |
when ownSizeof(curl_ioctl_callback) != ownSizeof(curl_ioctl_callback_2566914286): | |
static : | |
warning("Declaration of " & "curl_ioctl_callback" & | |
" exists but with different size") | |
curl_ioctl_callback | |
else: | |
curl_ioctl_callback_2566914286) | |
curl_hstsread_callback_2566914361 = (when declared(curl_hstsread_callback): | |
when ownSizeof(curl_hstsread_callback) != ownSizeof(curl_hstsread_callback_2566914360): | |
static : | |
warning("Declaration of " & "curl_hstsread_callback" & | |
" exists but with different size") | |
curl_hstsread_callback | |
else: | |
curl_hstsread_callback_2566914360) | |
curl_mime_2566914377 = (when declared(curl_mime): | |
when ownSizeof(curl_mime) != ownSizeof(curl_mime_2566914376): | |
static : | |
warning("Declaration of " & "curl_mime" & | |
" exists but with different size") | |
curl_mime | |
else: | |
curl_mime_2566914376) | |
curl_socket_t_2566914225 = (when declared(curl_socket_t): | |
when ownSizeof(curl_socket_t) != ownSizeof(curl_socket_t_2566914224): | |
static : | |
warning("Declaration of " & "curl_socket_t" & | |
" exists but with different size") | |
curl_socket_t | |
else: | |
curl_socket_t_2566914224) | |
curl_progress_callback_2566914237 = (when declared(curl_progress_callback): | |
when ownSizeof(curl_progress_callback) != ownSizeof(curl_progress_callback_2566914236): | |
static : | |
warning("Declaration of " & "curl_progress_callback" & | |
" exists but with different size") | |
curl_progress_callback | |
else: | |
curl_progress_callback_2566914236) | |
struct_curl_khkey_2566914325 = (when declared(struct_curl_khkey): | |
when ownSizeof(struct_curl_khkey) != ownSizeof(struct_curl_khkey_2566914324): | |
static : | |
warning("Declaration of " & "struct_curl_khkey" & | |
" exists but with different size") | |
struct_curl_khkey | |
else: | |
struct_curl_khkey_2566914324) | |
struct_curl_forms_2566914385 = (when declared(struct_curl_forms): | |
when ownSizeof(struct_curl_forms) != ownSizeof(struct_curl_forms_2566914384): | |
static : | |
warning("Declaration of " & "struct_curl_forms" & | |
" exists but with different size") | |
struct_curl_forms | |
else: | |
struct_curl_forms_2566914384) | |
CURLSHoption_2566914431 = (when declared(CURLSHoption): | |
when ownSizeof(CURLSHoption) != ownSizeof(CURLSHoption_2566914430): | |
static : | |
warning("Declaration of " & "CURLSHoption" & | |
" exists but with different size") | |
CURLSHoption | |
else: | |
CURLSHoption_2566914430) | |
enum_curl_khstat_2566914327 = (when declared(enum_curl_khstat): | |
when ownSizeof(enum_curl_khstat) != ownSizeof(enum_curl_khstat_2566914326): | |
static : | |
warning("Declaration of " & "enum_curl_khstat" & | |
" exists but with different size") | |
enum_curl_khstat | |
else: | |
enum_curl_khstat_2566914326) | |
CURLversion_2566914435 = (when declared(CURLversion): | |
when ownSizeof(CURLversion) != ownSizeof(CURLversion_2566914434): | |
static : | |
warning("Declaration of " & "CURLversion" & | |
" exists but with different size") | |
CURLversion | |
else: | |
CURLversion_2566914434) | |
enum_curl_infotype_2566914299 = (when declared(enum_curl_infotype): | |
when ownSizeof(enum_curl_infotype) != ownSizeof(enum_curl_infotype_2566914298): | |
static : | |
warning("Declaration of " & "enum_curl_infotype" & | |
" exists but with different size") | |
enum_curl_infotype | |
else: | |
enum_curl_infotype_2566914298) | |
enum_CURLINFO_2566914405 = (when declared(enum_CURLINFO): | |
when ownSizeof(enum_CURLINFO) != ownSizeof(enum_CURLINFO_2566914404): | |
static : | |
warning("Declaration of " & "enum_CURLINFO" & | |
" exists but with different size") | |
enum_CURLINFO | |
else: | |
enum_CURLINFO_2566914404) | |
enum_curl_khmatch_2566914329 = (when declared(enum_curl_khmatch): | |
when ownSizeof(enum_curl_khmatch) != ownSizeof(enum_curl_khmatch_2566914328): | |
static : | |
warning("Declaration of " & "enum_curl_khmatch" & | |
" exists but with different size") | |
enum_curl_khmatch | |
else: | |
enum_curl_khmatch_2566914328) | |
enum_curl_ftpauth_2566914341 = (when declared(enum_curl_ftpauth): | |
when ownSizeof(enum_curl_ftpauth) != ownSizeof(enum_curl_ftpauth_2566914340): | |
static : | |
warning("Declaration of " & "enum_curl_ftpauth" & | |
" exists but with different size") | |
enum_curl_ftpauth | |
else: | |
enum_curl_ftpauth_2566914340) | |
curl_calloc_callback_2566914297 = (when declared(curl_calloc_callback): | |
when ownSizeof(curl_calloc_callback) != ownSizeof(curl_calloc_callback_2566914296): | |
static : | |
warning("Declaration of " & "curl_calloc_callback" & | |
" exists but with different size") | |
curl_calloc_callback | |
else: | |
curl_calloc_callback_2566914296) | |
curl_ftpmethod_2566914351 = (when declared(curl_ftpmethod): | |
when ownSizeof(curl_ftpmethod) != ownSizeof(curl_ftpmethod_2566914350): | |
static : | |
warning("Declaration of " & "curl_ftpmethod" & | |
" exists but with different size") | |
curl_ftpmethod | |
else: | |
curl_ftpmethod_2566914350) | |
curl_sslbackend_2566914229 = (when declared(curl_sslbackend): | |
when ownSizeof(curl_sslbackend) != ownSizeof(curl_sslbackend_2566914228): | |
static : | |
warning("Declaration of " & "curl_sslbackend" & | |
" exists but with different size") | |
curl_sslbackend | |
else: | |
curl_sslbackend_2566914228) | |
curl_read_callback_2566914261 = (when declared(curl_read_callback): | |
when ownSizeof(curl_read_callback) != ownSizeof(curl_read_callback_2566914260): | |
static : | |
warning("Declaration of " & "curl_read_callback" & | |
" exists but with different size") | |
curl_read_callback | |
else: | |
curl_read_callback_2566914260) | |
enum_CURLformoption_2566914381 = (when declared(enum_CURLformoption): | |
when ownSizeof(enum_CURLformoption) != ownSizeof(enum_CURLformoption_2566914380): | |
static : | |
warning("Declaration of " & "enum_CURLformoption" & | |
" exists but with different size") | |
enum_CURLformoption | |
else: | |
enum_CURLformoption_2566914380) | |
curl_trailer_callback_2566914263 = (when declared(curl_trailer_callback): | |
when ownSizeof(curl_trailer_callback) != ownSizeof(curl_trailer_callback_2566914262): | |
static : | |
warning("Declaration of " & "curl_trailer_callback" & | |
" exists but with different size") | |
curl_trailer_callback | |
else: | |
curl_trailer_callback_2566914262) | |
curl_chunk_end_callback_2566914255 = (when declared(curl_chunk_end_callback): | |
when ownSizeof(curl_chunk_end_callback) != | |
ownSizeof(curl_chunk_end_callback_2566914254): | |
static : | |
warning("Declaration of " & "curl_chunk_end_callback" & | |
" exists but with different size") | |
curl_chunk_end_callback | |
else: | |
curl_chunk_end_callback_2566914254) | |
curl_ftpcreatedir_2566914347 = (when declared(curl_ftpcreatedir): | |
when ownSizeof(curl_ftpcreatedir) != ownSizeof(curl_ftpcreatedir_2566914346): | |
static : | |
warning("Declaration of " & "curl_ftpcreatedir" & | |
" exists but with different size") | |
curl_ftpcreatedir | |
else: | |
curl_ftpcreatedir_2566914346) | |
struct_sockaddr_2566914273 = (when declared(struct_sockaddr): | |
when ownSizeof(struct_sockaddr) != ownSizeof(struct_sockaddr_2566914272): | |
static : | |
warning("Declaration of " & "struct_sockaddr" & | |
" exists but with different size") | |
struct_sockaddr | |
else: | |
struct_sockaddr_2566914272) | |
curl_ftpauth_2566914343 = (when declared(curl_ftpauth): | |
when ownSizeof(curl_ftpauth) != ownSizeof(curl_ftpauth_2566914342): | |
static : | |
warning("Declaration of " & "curl_ftpauth" & | |
" exists but with different size") | |
curl_ftpauth | |
else: | |
curl_ftpauth_2566914342) | |
curl_xferinfo_callback_2566914239 = (when declared(curl_xferinfo_callback): | |
when ownSizeof(curl_xferinfo_callback) != ownSizeof(curl_xferinfo_callback_2566914238): | |
static : | |
warning("Declaration of " & "curl_xferinfo_callback" & | |
" exists but with different size") | |
curl_xferinfo_callback | |
else: | |
curl_xferinfo_callback_2566914238) | |
enum_curl_TimeCond_2566914373 = (when declared(enum_curl_TimeCond): | |
when ownSizeof(enum_curl_TimeCond) != ownSizeof(enum_curl_TimeCond_2566914372): | |
static : | |
warning("Declaration of " & "enum_curl_TimeCond" & | |
" exists but with different size") | |
enum_curl_TimeCond | |
else: | |
enum_curl_TimeCond_2566914372) | |
curlfiletype_2566914247 = (when declared(curlfiletype): | |
when ownSizeof(curlfiletype) != ownSizeof(curlfiletype_2566914246): | |
static : | |
warning("Declaration of " & "curlfiletype" & | |
" exists but with different size") | |
curlfiletype | |
else: | |
curlfiletype_2566914246) | |
curl_realloc_callback_2566914293 = (when declared(curl_realloc_callback): | |
when ownSizeof(curl_realloc_callback) != ownSizeof(curl_realloc_callback_2566914292): | |
static : | |
warning("Declaration of " & "curl_realloc_callback" & | |
" exists but with different size") | |
curl_realloc_callback | |
else: | |
curl_realloc_callback_2566914292) | |
curlioerr_2566914281 = (when declared(curlioerr): | |
when ownSizeof(curlioerr) != ownSizeof(curlioerr_2566914280): | |
static : | |
warning("Declaration of " & "curlioerr" & | |
" exists but with different size") | |
curlioerr | |
else: | |
curlioerr_2566914280) | |
CURLformoption_2566914383 = (when declared(CURLformoption): | |
when ownSizeof(CURLformoption) != ownSizeof(CURLformoption_2566914382): | |
static : | |
warning("Declaration of " & "CURLformoption" & | |
" exists but with different size") | |
CURLformoption | |
else: | |
CURLformoption_2566914382) | |
curl_ssl_ctx_callback_2566914317 = (when declared(curl_ssl_ctx_callback): | |
when ownSizeof(curl_ssl_ctx_callback) != ownSizeof(curl_ssl_ctx_callback_2566914316): | |
static : | |
warning("Declaration of " & "curl_ssl_ctx_callback" & | |
" exists but with different size") | |
curl_ssl_ctx_callback | |
else: | |
curl_ssl_ctx_callback_2566914316) | |
enum_curl_ftpccc_2566914337 = (when declared(enum_curl_ftpccc): | |
when ownSizeof(enum_curl_ftpccc) != ownSizeof(enum_curl_ftpccc_2566914336): | |
static : | |
warning("Declaration of " & "enum_curl_ftpccc" & | |
" exists but with different size") | |
enum_curl_ftpccc | |
else: | |
enum_curl_ftpccc_2566914336) | |
CURLsslset_2566914399 = (when declared(CURLsslset): | |
when ownSizeof(CURLsslset) != ownSizeof(CURLsslset_2566914398): | |
static : | |
warning("Declaration of " & "CURLsslset" & | |
" exists but with different size") | |
CURLsslset | |
else: | |
CURLsslset_2566914398) | |
curl_lock_access_2566914419 = (when declared(curl_lock_access): | |
when ownSizeof(curl_lock_access) != ownSizeof(curl_lock_access_2566914418): | |
static : | |
warning("Declaration of " & "curl_lock_access" & | |
" exists but with different size") | |
curl_lock_access | |
else: | |
curl_lock_access_2566914418) | |
curl_formget_callback_2566914391 = (when declared(curl_formget_callback): | |
when ownSizeof(curl_formget_callback) != ownSizeof(curl_formget_callback_2566914390): | |
static : | |
warning("Declaration of " & "curl_formget_callback" & | |
" exists but with different size") | |
curl_formget_callback | |
else: | |
curl_formget_callback_2566914390) | |
enum_curl_sslbackend_2566914227 = (when declared(enum_curl_sslbackend): | |
when ownSizeof(enum_curl_sslbackend) != ownSizeof(enum_curl_sslbackend_2566914226): | |
static : | |
warning("Declaration of " & "enum_curl_sslbackend" & | |
" exists but with different size") | |
enum_curl_sslbackend | |
else: | |
enum_curl_sslbackend_2566914226) | |
sa_family_t_2566914441 = (when declared(sa_family_t): | |
when ownSizeof(sa_family_t) != ownSizeof(sa_family_t_2566914440): | |
static : | |
warning("Declaration of " & "sa_family_t" & | |
" exists but with different size") | |
sa_family_t | |
else: | |
sa_family_t_2566914440) | |
struct_curl_tlssessioninfo_2566914403 = (when declared( | |
struct_curl_tlssessioninfo): | |
when ownSizeof(struct_curl_tlssessioninfo) != | |
ownSizeof(struct_curl_tlssessioninfo_2566914402): | |
static : | |
warning("Declaration of " & "struct_curl_tlssessioninfo" & | |
" exists but with different size") | |
struct_curl_tlssessioninfo | |
else: | |
struct_curl_tlssessioninfo_2566914402) | |
curl_ssl_backend_typedef_2566914395 = (when declared(curl_ssl_backend_typedef): | |
when ownSizeof(curl_ssl_backend_typedef) != | |
ownSizeof(curl_ssl_backend_typedef_2566914394): | |
static : | |
warning("Declaration of " & "curl_ssl_backend_typedef" & | |
" exists but with different size") | |
curl_ssl_backend_typedef | |
else: | |
curl_ssl_backend_typedef_2566914394) | |
when not declared(curl_opensocket_callback): | |
type | |
curl_opensocket_callback* = curl_opensocket_callback_2566914274 | |
else: | |
static : | |
hint("Declaration of " & "curl_opensocket_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_sshhostkeycallback): | |
type | |
curl_sshhostkeycallback* = curl_sshhostkeycallback_2566914332 | |
else: | |
static : | |
hint("Declaration of " & "curl_sshhostkeycallback" & | |
" already exists, not redeclaring") | |
when not declared(curl_write_callback): | |
type | |
curl_write_callback* = curl_write_callback_2566914240 | |
else: | |
static : | |
hint("Declaration of " & "curl_write_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_debug_callback): | |
type | |
curl_debug_callback* = curl_debug_callback_2566914302 | |
else: | |
static : | |
hint("Declaration of " & "curl_debug_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_closesocket_callback): | |
type | |
curl_closesocket_callback* = curl_closesocket_callback_2566914276 | |
else: | |
static : | |
hint("Declaration of " & "curl_closesocket_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_curlioerr): | |
type | |
enum_curlioerr* = enum_curlioerr_2566914278 | |
else: | |
static : | |
hint("Declaration of " & "enum_curlioerr" & | |
" already exists, not redeclaring") | |
when not declared(curl_strdup_callback): | |
type | |
curl_strdup_callback* = curl_strdup_callback_2566914294 | |
else: | |
static : | |
hint("Declaration of " & "curl_strdup_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_ftpccc): | |
type | |
curl_ftpccc* = curl_ftpccc_2566914338 | |
else: | |
static : | |
hint("Declaration of " & "curl_ftpccc" & " already exists, not redeclaring") | |
when not declared(CURLSTScode): | |
type | |
CURLSTScode* = CURLSTScode_2566914358 | |
else: | |
static : | |
hint("Declaration of " & "CURLSTScode" & " already exists, not redeclaring") | |
when not declared(CURLSHcode): | |
type | |
CURLSHcode* = CURLSHcode_2566914426 | |
else: | |
static : | |
hint("Declaration of " & "CURLSHcode" & " already exists, not redeclaring") | |
when not declared(enum_curlfiletype): | |
type | |
enum_curlfiletype* = enum_curlfiletype_2566914244 | |
else: | |
static : | |
hint("Declaration of " & "enum_curlfiletype" & | |
" already exists, not redeclaring") | |
when not declared(curl_hstswrite_callback): | |
type | |
curl_hstswrite_callback* = curl_hstswrite_callback_2566914362 | |
else: | |
static : | |
hint("Declaration of " & "curl_hstswrite_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURL_TLSAUTH): | |
type | |
enum_CURL_TLSAUTH* = enum_CURL_TLSAUTH_2566914370 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURL_TLSAUTH" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_version_info_data): | |
type | |
struct_curl_version_info_data* = struct_curl_version_info_data_2566914436 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_version_info_data" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLcode): | |
type | |
enum_CURLcode* = enum_CURLcode_2566914306 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLcode" & | |
" already exists, not redeclaring") | |
when not declared(curl_prereq_callback): | |
type | |
curl_prereq_callback* = curl_prereq_callback_2566914304 | |
else: | |
static : | |
hint("Declaration of " & "curl_prereq_callback" & | |
" already exists, not redeclaring") | |
when not declared(CURLcode): | |
type | |
CURLcode* = CURLcode_2566914308 | |
else: | |
static : | |
hint("Declaration of " & "CURLcode" & " already exists, not redeclaring") | |
when not declared(enum_curl_khtype): | |
type | |
enum_curl_khtype* = enum_curl_khtype_2566914322 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_khtype" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_httppost): | |
type | |
struct_curl_httppost* = struct_curl_httppost_2566914230 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_httppost" & | |
" already exists, not redeclaring") | |
when not declared(CURLFORMcode): | |
type | |
CURLFORMcode* = CURLFORMcode_2566914388 | |
else: | |
static : | |
hint("Declaration of " & "CURLFORMcode" & " already exists, not redeclaring") | |
when not declared(curlsocktype): | |
type | |
curlsocktype* = curlsocktype_2566914266 | |
else: | |
static : | |
hint("Declaration of " & "curlsocktype" & " already exists, not redeclaring") | |
when not declared(curl_sockopt_callback): | |
type | |
curl_sockopt_callback* = curl_sockopt_callback_2566914268 | |
else: | |
static : | |
hint("Declaration of " & "curl_sockopt_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLsslset): | |
type | |
enum_CURLsslset* = enum_CURLsslset_2566914396 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLsslset" & | |
" already exists, not redeclaring") | |
when not declared(curl_off_t): | |
type | |
curl_off_t* = curl_off_t_2566914234 | |
else: | |
static : | |
hint("Declaration of " & "curl_off_t" & " already exists, not redeclaring") | |
when not declared(enum_curlsocktype): | |
type | |
enum_curlsocktype* = enum_curlsocktype_2566914264 | |
else: | |
static : | |
hint("Declaration of " & "enum_curlsocktype" & | |
" already exists, not redeclaring") | |
when not declared(curl_mimepart): | |
type | |
curl_mimepart* = curl_mimepart_2566914378 | |
else: | |
static : | |
hint("Declaration of " & "curl_mimepart" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_proxytype): | |
type | |
enum_curl_proxytype* = enum_curl_proxytype_2566914318 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_proxytype" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_index): | |
type | |
struct_curl_index* = struct_curl_index_2566914354 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_index" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_lock_data): | |
type | |
enum_curl_lock_data* = enum_curl_lock_data_2566914412 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_lock_data" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_fileinfo): | |
type | |
struct_curl_fileinfo* = struct_curl_fileinfo_2566914248 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_fileinfo" & | |
" already exists, not redeclaring") | |
when not declared(curl_resolver_start_callback): | |
type | |
curl_resolver_start_callback* = curl_resolver_start_callback_2566914242 | |
else: | |
static : | |
hint("Declaration of " & "curl_resolver_start_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_lock_data): | |
type | |
curl_lock_data* = curl_lock_data_2566914414 | |
else: | |
static : | |
hint("Declaration of " & "curl_lock_data" & | |
" already exists, not redeclaring") | |
when not declared(curl_version_info_data): | |
type | |
curl_version_info_data* = curl_version_info_data_2566914438 | |
else: | |
static : | |
hint("Declaration of " & "curl_version_info_data" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURL_NETRC_OPTION): | |
type | |
enum_CURL_NETRC_OPTION* = enum_CURL_NETRC_OPTION_2566914368 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURL_NETRC_OPTION" & | |
" already exists, not redeclaring") | |
when not declared(CURLoption): | |
type | |
CURLoption* = CURLoption_2566914366 | |
else: | |
static : | |
hint("Declaration of " & "CURLoption" & " already exists, not redeclaring") | |
when not declared(struct_curl_certinfo): | |
type | |
struct_curl_certinfo* = struct_curl_certinfo_2566914400 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_certinfo" & | |
" already exists, not redeclaring") | |
when not declared(curliocmd): | |
type | |
curliocmd* = curliocmd_2566914284 | |
else: | |
static : | |
hint("Declaration of " & "curliocmd" & " already exists, not redeclaring") | |
when not declared(CURLproxycode): | |
type | |
CURLproxycode* = CURLproxycode_2566914312 | |
else: | |
static : | |
hint("Declaration of " & "CURLproxycode" & | |
" already exists, not redeclaring") | |
when not declared(curl_unlock_function): | |
type | |
curl_unlock_function* = curl_unlock_function_2566914422 | |
else: | |
static : | |
hint("Declaration of " & "curl_unlock_function" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_ftpmethod): | |
type | |
enum_curl_ftpmethod* = enum_curl_ftpmethod_2566914348 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_ftpmethod" & | |
" already exists, not redeclaring") | |
when not declared(curl_free_callback): | |
type | |
curl_free_callback* = curl_free_callback_2566914290 | |
else: | |
static : | |
hint("Declaration of " & "curl_free_callback" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_hstsentry): | |
type | |
struct_curl_hstsentry* = struct_curl_hstsentry_2566914352 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_hstsentry" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_ssl_backend): | |
type | |
struct_curl_ssl_backend* = struct_curl_ssl_backend_2566914392 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_ssl_backend" & | |
" already exists, not redeclaring") | |
when not declared(curl_seek_callback): | |
type | |
curl_seek_callback* = curl_seek_callback_2566914258 | |
else: | |
static : | |
hint("Declaration of " & "curl_seek_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_usessl): | |
type | |
curl_usessl* = curl_usessl_2566914218 | |
else: | |
static : | |
hint("Declaration of " & "curl_usessl" & " already exists, not redeclaring") | |
when not declared(curl_chunk_bgn_callback): | |
type | |
curl_chunk_bgn_callback* = curl_chunk_bgn_callback_2566914252 | |
else: | |
static : | |
hint("Declaration of " & "curl_chunk_bgn_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLFORMcode): | |
type | |
enum_CURLFORMcode* = enum_CURLFORMcode_2566914386 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLFORMcode" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_closepolicy): | |
type | |
enum_curl_closepolicy* = enum_curl_closepolicy_2566914408 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_closepolicy" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLSTScode): | |
type | |
enum_CURLSTScode* = enum_CURLSTScode_2566914356 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLSTScode" & | |
" already exists, not redeclaring") | |
when not declared(time_t): | |
type | |
time_t* = time_t_2566914250 | |
else: | |
static : | |
hint("Declaration of " & "time_t" & " already exists, not redeclaring") | |
when not declared(enum_CURLoption): | |
type | |
enum_CURLoption* = enum_CURLoption_2566914364 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLoption" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLversion): | |
type | |
enum_CURLversion* = enum_CURLversion_2566914432 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLversion" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_sockaddr): | |
type | |
struct_curl_sockaddr* = struct_curl_sockaddr_2566914270 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_sockaddr" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLSHcode): | |
type | |
enum_CURLSHcode* = enum_CURLSHcode_2566914424 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLSHcode" & | |
" already exists, not redeclaring") | |
when not declared(curl_malloc_callback): | |
type | |
curl_malloc_callback* = curl_malloc_callback_2566914288 | |
else: | |
static : | |
hint("Declaration of " & "curl_malloc_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLproxycode): | |
type | |
enum_CURLproxycode* = enum_CURLproxycode_2566914310 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLproxycode" & | |
" already exists, not redeclaring") | |
when not declared(curl_fnmatch_callback): | |
type | |
curl_fnmatch_callback* = curl_fnmatch_callback_2566914256 | |
else: | |
static : | |
hint("Declaration of " & "curl_fnmatch_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_sshkeycallback): | |
type | |
curl_sshkeycallback* = curl_sshkeycallback_2566914330 | |
else: | |
static : | |
hint("Declaration of " & "curl_sshkeycallback" & | |
" already exists, not redeclaring") | |
when not declared(curl_TimeCond): | |
type | |
curl_TimeCond* = curl_TimeCond_2566914374 | |
else: | |
static : | |
hint("Declaration of " & "curl_TimeCond" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_ftpcreatedir): | |
type | |
enum_curl_ftpcreatedir* = enum_curl_ftpcreatedir_2566914344 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_ftpcreatedir" & | |
" already exists, not redeclaring") | |
when not declared(curl_conv_callback): | |
type | |
curl_conv_callback* = curl_conv_callback_2566914314 | |
else: | |
static : | |
hint("Declaration of " & "curl_conv_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_usessl): | |
type | |
enum_curl_usessl* = enum_curl_usessl_2566914334 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_usessl" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_lock_access): | |
type | |
enum_curl_lock_access* = enum_curl_lock_access_2566914416 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_lock_access" & | |
" already exists, not redeclaring") | |
when not declared(curl_proxytype): | |
type | |
curl_proxytype* = curl_proxytype_2566914320 | |
else: | |
static : | |
hint("Declaration of " & "curl_proxytype" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO): | |
type | |
CURLINFO* = CURLINFO_2566914406 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO" & " already exists, not redeclaring") | |
when not declared(curl_lock_function): | |
type | |
curl_lock_function* = curl_lock_function_2566914420 | |
else: | |
static : | |
hint("Declaration of " & "curl_lock_function" & | |
" already exists, not redeclaring") | |
when not declared(curl_closepolicy): | |
type | |
curl_closepolicy* = curl_closepolicy_2566914410 | |
else: | |
static : | |
hint("Declaration of " & "curl_closepolicy" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLSHoption): | |
type | |
enum_CURLSHoption* = enum_CURLSHoption_2566914428 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLSHoption" & | |
" already exists, not redeclaring") | |
when not declared(enum_curliocmd): | |
type | |
enum_curliocmd* = enum_curliocmd_2566914282 | |
else: | |
static : | |
hint("Declaration of " & "enum_curliocmd" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_slist): | |
type | |
struct_curl_slist* = struct_curl_slist_2566914232 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_slist" & | |
" already exists, not redeclaring") | |
when not declared(curl_infotype): | |
type | |
curl_infotype* = curl_infotype_2566914300 | |
else: | |
static : | |
hint("Declaration of " & "curl_infotype" & | |
" already exists, not redeclaring") | |
when not declared(curl_ioctl_callback): | |
type | |
curl_ioctl_callback* = curl_ioctl_callback_2566914286 | |
else: | |
static : | |
hint("Declaration of " & "curl_ioctl_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_hstsread_callback): | |
type | |
curl_hstsread_callback* = curl_hstsread_callback_2566914360 | |
else: | |
static : | |
hint("Declaration of " & "curl_hstsread_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime): | |
type | |
curl_mime* = curl_mime_2566914376 | |
else: | |
static : | |
hint("Declaration of " & "curl_mime" & " already exists, not redeclaring") | |
when not declared(curl_socket_t): | |
type | |
curl_socket_t* = curl_socket_t_2566914224 | |
else: | |
static : | |
hint("Declaration of " & "curl_socket_t" & | |
" already exists, not redeclaring") | |
when not declared(curl_progress_callback): | |
type | |
curl_progress_callback* = curl_progress_callback_2566914236 | |
else: | |
static : | |
hint("Declaration of " & "curl_progress_callback" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_khkey): | |
type | |
struct_curl_khkey* = struct_curl_khkey_2566914324 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_khkey" & | |
" already exists, not redeclaring") | |
when not declared(struct_curl_forms): | |
type | |
struct_curl_forms* = struct_curl_forms_2566914384 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_forms" & | |
" already exists, not redeclaring") | |
when not declared(CURLSHoption): | |
type | |
CURLSHoption* = CURLSHoption_2566914430 | |
else: | |
static : | |
hint("Declaration of " & "CURLSHoption" & " already exists, not redeclaring") | |
when not declared(enum_curl_khstat): | |
type | |
enum_curl_khstat* = enum_curl_khstat_2566914326 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_khstat" & | |
" already exists, not redeclaring") | |
when not declared(CURLversion): | |
type | |
CURLversion* = CURLversion_2566914434 | |
else: | |
static : | |
hint("Declaration of " & "CURLversion" & " already exists, not redeclaring") | |
when not declared(enum_curl_infotype): | |
type | |
enum_curl_infotype* = enum_curl_infotype_2566914298 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_infotype" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLINFO): | |
type | |
enum_CURLINFO* = enum_CURLINFO_2566914404 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLINFO" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_khmatch): | |
type | |
enum_curl_khmatch* = enum_curl_khmatch_2566914328 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_khmatch" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_ftpauth): | |
type | |
enum_curl_ftpauth* = enum_curl_ftpauth_2566914340 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_ftpauth" & | |
" already exists, not redeclaring") | |
when not declared(curl_calloc_callback): | |
type | |
curl_calloc_callback* = curl_calloc_callback_2566914296 | |
else: | |
static : | |
hint("Declaration of " & "curl_calloc_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_ftpmethod): | |
type | |
curl_ftpmethod* = curl_ftpmethod_2566914350 | |
else: | |
static : | |
hint("Declaration of " & "curl_ftpmethod" & | |
" already exists, not redeclaring") | |
when not declared(curl_sslbackend): | |
type | |
curl_sslbackend* = curl_sslbackend_2566914228 | |
else: | |
static : | |
hint("Declaration of " & "curl_sslbackend" & | |
" already exists, not redeclaring") | |
when not declared(curl_read_callback): | |
type | |
curl_read_callback* = curl_read_callback_2566914260 | |
else: | |
static : | |
hint("Declaration of " & "curl_read_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_CURLformoption): | |
type | |
enum_CURLformoption* = enum_CURLformoption_2566914380 | |
else: | |
static : | |
hint("Declaration of " & "enum_CURLformoption" & | |
" already exists, not redeclaring") | |
when not declared(curl_trailer_callback): | |
type | |
curl_trailer_callback* = curl_trailer_callback_2566914262 | |
else: | |
static : | |
hint("Declaration of " & "curl_trailer_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_chunk_end_callback): | |
type | |
curl_chunk_end_callback* = curl_chunk_end_callback_2566914254 | |
else: | |
static : | |
hint("Declaration of " & "curl_chunk_end_callback" & | |
" already exists, not redeclaring") | |
when not declared(curl_ftpcreatedir): | |
type | |
curl_ftpcreatedir* = curl_ftpcreatedir_2566914346 | |
else: | |
static : | |
hint("Declaration of " & "curl_ftpcreatedir" & | |
" already exists, not redeclaring") | |
when not declared(struct_sockaddr): | |
type | |
struct_sockaddr* = struct_sockaddr_2566914272 | |
else: | |
static : | |
hint("Declaration of " & "struct_sockaddr" & | |
" already exists, not redeclaring") | |
when not declared(curl_ftpauth): | |
type | |
curl_ftpauth* = curl_ftpauth_2566914342 | |
else: | |
static : | |
hint("Declaration of " & "curl_ftpauth" & " already exists, not redeclaring") | |
when not declared(curl_xferinfo_callback): | |
type | |
curl_xferinfo_callback* = curl_xferinfo_callback_2566914238 | |
else: | |
static : | |
hint("Declaration of " & "curl_xferinfo_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_TimeCond): | |
type | |
enum_curl_TimeCond* = enum_curl_TimeCond_2566914372 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_TimeCond" & | |
" already exists, not redeclaring") | |
when not declared(curlfiletype): | |
type | |
curlfiletype* = curlfiletype_2566914246 | |
else: | |
static : | |
hint("Declaration of " & "curlfiletype" & " already exists, not redeclaring") | |
when not declared(curl_realloc_callback): | |
type | |
curl_realloc_callback* = curl_realloc_callback_2566914292 | |
else: | |
static : | |
hint("Declaration of " & "curl_realloc_callback" & | |
" already exists, not redeclaring") | |
when not declared(curlioerr): | |
type | |
curlioerr* = curlioerr_2566914280 | |
else: | |
static : | |
hint("Declaration of " & "curlioerr" & " already exists, not redeclaring") | |
when not declared(CURLformoption): | |
type | |
CURLformoption* = CURLformoption_2566914382 | |
else: | |
static : | |
hint("Declaration of " & "CURLformoption" & | |
" already exists, not redeclaring") | |
when not declared(curl_ssl_ctx_callback): | |
type | |
curl_ssl_ctx_callback* = curl_ssl_ctx_callback_2566914316 | |
else: | |
static : | |
hint("Declaration of " & "curl_ssl_ctx_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_ftpccc): | |
type | |
enum_curl_ftpccc* = enum_curl_ftpccc_2566914336 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_ftpccc" & | |
" already exists, not redeclaring") | |
when not declared(CURLsslset): | |
type | |
CURLsslset* = CURLsslset_2566914398 | |
else: | |
static : | |
hint("Declaration of " & "CURLsslset" & " already exists, not redeclaring") | |
when not declared(curl_lock_access): | |
type | |
curl_lock_access* = curl_lock_access_2566914418 | |
else: | |
static : | |
hint("Declaration of " & "curl_lock_access" & | |
" already exists, not redeclaring") | |
when not declared(curl_formget_callback): | |
type | |
curl_formget_callback* = curl_formget_callback_2566914390 | |
else: | |
static : | |
hint("Declaration of " & "curl_formget_callback" & | |
" already exists, not redeclaring") | |
when not declared(enum_curl_sslbackend): | |
type | |
enum_curl_sslbackend* = enum_curl_sslbackend_2566914226 | |
else: | |
static : | |
hint("Declaration of " & "enum_curl_sslbackend" & | |
" already exists, not redeclaring") | |
when not declared(sa_family_t): | |
type | |
sa_family_t* = sa_family_t_2566914440 | |
else: | |
static : | |
hint("Declaration of " & "sa_family_t" & " already exists, not redeclaring") | |
when not declared(struct_curl_tlssessioninfo): | |
type | |
struct_curl_tlssessioninfo* = struct_curl_tlssessioninfo_2566914402 | |
else: | |
static : | |
hint("Declaration of " & "struct_curl_tlssessioninfo" & | |
" already exists, not redeclaring") | |
when not declared(curl_ssl_backend_typedef): | |
type | |
curl_ssl_backend_typedef* = curl_ssl_backend_typedef_2566914394 | |
else: | |
static : | |
hint("Declaration of " & "curl_ssl_backend_typedef" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SOCKET_BAD): | |
when -1 is static: | |
const | |
CURL_SOCKET_BAD* = -1 ## Generated based on /usr/include/curl/curl.h:147:9 | |
else: | |
let CURL_SOCKET_BAD* = -1 ## Generated based on /usr/include/curl/curl.h:147:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SOCKET_BAD" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSLBACKEND_AWSLC): | |
when CURLSSLBACKEND_OPENSSL is typedesc: | |
type | |
CURLSSLBACKEND_AWSLC* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:172:9 | |
else: | |
when CURLSSLBACKEND_OPENSSL is static: | |
const | |
CURLSSLBACKEND_AWSLC* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:172:9 | |
else: | |
let CURLSSLBACKEND_AWSLC* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:172:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLSSLBACKEND_AWSLC" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSLBACKEND_BORINGSSL): | |
when CURLSSLBACKEND_OPENSSL is typedesc: | |
type | |
CURLSSLBACKEND_BORINGSSL* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:173:9 | |
else: | |
when CURLSSLBACKEND_OPENSSL is static: | |
const | |
CURLSSLBACKEND_BORINGSSL* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:173:9 | |
else: | |
let CURLSSLBACKEND_BORINGSSL* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:173:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLSSLBACKEND_BORINGSSL" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSLBACKEND_LIBRESSL): | |
when CURLSSLBACKEND_OPENSSL is typedesc: | |
type | |
CURLSSLBACKEND_LIBRESSL* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:174:9 | |
else: | |
when CURLSSLBACKEND_OPENSSL is static: | |
const | |
CURLSSLBACKEND_LIBRESSL* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:174:9 | |
else: | |
let CURLSSLBACKEND_LIBRESSL* = CURLSSLBACKEND_OPENSSL ## Generated based on /usr/include/curl/curl.h:174:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLSSLBACKEND_LIBRESSL" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSLBACKEND_CYASSL): | |
when CURLSSLBACKEND_WOLFSSL is typedesc: | |
type | |
CURLSSLBACKEND_CYASSL* = CURLSSLBACKEND_WOLFSSL ## Generated based on /usr/include/curl/curl.h:177:9 | |
else: | |
when CURLSSLBACKEND_WOLFSSL is static: | |
const | |
CURLSSLBACKEND_CYASSL* = CURLSSLBACKEND_WOLFSSL ## Generated based on /usr/include/curl/curl.h:177:9 | |
else: | |
let CURLSSLBACKEND_CYASSL* = CURLSSLBACKEND_WOLFSSL ## Generated based on /usr/include/curl/curl.h:177:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLSSLBACKEND_CYASSL" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSLBACKEND_DARWINSSL): | |
when CURLSSLBACKEND_SECURETRANSPORT is typedesc: | |
type | |
CURLSSLBACKEND_DARWINSSL* = CURLSSLBACKEND_SECURETRANSPORT ## Generated based on /usr/include/curl/curl.h:178:9 | |
else: | |
when CURLSSLBACKEND_SECURETRANSPORT is static: | |
const | |
CURLSSLBACKEND_DARWINSSL* = CURLSSLBACKEND_SECURETRANSPORT ## Generated based on /usr/include/curl/curl.h:178:9 | |
else: | |
let CURLSSLBACKEND_DARWINSSL* = CURLSSLBACKEND_SECURETRANSPORT ## Generated based on /usr/include/curl/curl.h:178:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLSSLBACKEND_DARWINSSL" & | |
" already exists, not redeclaring") | |
when not declared(CURL_PROGRESSFUNC_CONTINUE): | |
when 268435457 is static: | |
const | |
CURL_PROGRESSFUNC_CONTINUE* = 268435457 ## Generated based on /usr/include/curl/curl.h:227:9 | |
else: | |
let CURL_PROGRESSFUNC_CONTINUE* = 268435457 ## Generated based on /usr/include/curl/curl.h:227:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_PROGRESSFUNC_CONTINUE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_MAX_WRITE_SIZE): | |
when 16384 is static: | |
const | |
CURL_MAX_WRITE_SIZE* = 16384 ## Generated based on /usr/include/curl/curl.h:258:9 | |
else: | |
let CURL_MAX_WRITE_SIZE* = 16384 ## Generated based on /usr/include/curl/curl.h:258:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_MAX_WRITE_SIZE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_WRITEFUNC_PAUSE): | |
when 268435457 is static: | |
const | |
CURL_WRITEFUNC_PAUSE* = 268435457 ## Generated based on /usr/include/curl/curl.h:270:9 | |
else: | |
let CURL_WRITEFUNC_PAUSE* = 268435457 ## Generated based on /usr/include/curl/curl.h:270:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_WRITEFUNC_PAUSE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_WRITEFUNC_ERROR): | |
when 4294967295 is static: | |
const | |
CURL_WRITEFUNC_ERROR* = 4294967295'i64 ## Generated based on /usr/include/curl/curl.h:274:9 | |
else: | |
let CURL_WRITEFUNC_ERROR* = 4294967295'i64 ## Generated based on /usr/include/curl/curl.h:274:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_WRITEFUNC_ERROR" & | |
" already exists, not redeclaring") | |
when not declared(CURL_CHUNK_BGN_FUNC_OK): | |
when 0 is static: | |
const | |
CURL_CHUNK_BGN_FUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:338:9 | |
else: | |
let CURL_CHUNK_BGN_FUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:338:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_CHUNK_BGN_FUNC_OK" & | |
" already exists, not redeclaring") | |
when not declared(CURL_CHUNK_BGN_FUNC_FAIL): | |
when 1 is static: | |
const | |
CURL_CHUNK_BGN_FUNC_FAIL* = 1 ## Generated based on /usr/include/curl/curl.h:339:9 | |
else: | |
let CURL_CHUNK_BGN_FUNC_FAIL* = 1 ## Generated based on /usr/include/curl/curl.h:339:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_CHUNK_BGN_FUNC_FAIL" & | |
" already exists, not redeclaring") | |
when not declared(CURL_CHUNK_BGN_FUNC_SKIP): | |
when 2 is static: | |
const | |
CURL_CHUNK_BGN_FUNC_SKIP* = 2 ## Generated based on /usr/include/curl/curl.h:340:9 | |
else: | |
let CURL_CHUNK_BGN_FUNC_SKIP* = 2 ## Generated based on /usr/include/curl/curl.h:340:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_CHUNK_BGN_FUNC_SKIP" & | |
" already exists, not redeclaring") | |
when not declared(CURL_CHUNK_END_FUNC_OK): | |
when 0 is static: | |
const | |
CURL_CHUNK_END_FUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:350:9 | |
else: | |
let CURL_CHUNK_END_FUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:350:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_CHUNK_END_FUNC_OK" & | |
" already exists, not redeclaring") | |
when not declared(CURL_CHUNK_END_FUNC_FAIL): | |
when 1 is static: | |
const | |
CURL_CHUNK_END_FUNC_FAIL* = 1 ## Generated based on /usr/include/curl/curl.h:351:9 | |
else: | |
let CURL_CHUNK_END_FUNC_FAIL* = 1 ## Generated based on /usr/include/curl/curl.h:351:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_CHUNK_END_FUNC_FAIL" & | |
" already exists, not redeclaring") | |
when not declared(CURL_FNMATCHFUNC_MATCH): | |
when 0 is static: | |
const | |
CURL_FNMATCHFUNC_MATCH* = 0 ## Generated based on /usr/include/curl/curl.h:362:9 | |
else: | |
let CURL_FNMATCHFUNC_MATCH* = 0 ## Generated based on /usr/include/curl/curl.h:362:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_FNMATCHFUNC_MATCH" & | |
" already exists, not redeclaring") | |
when not declared(CURL_FNMATCHFUNC_NOMATCH): | |
when 1 is static: | |
const | |
CURL_FNMATCHFUNC_NOMATCH* = 1 ## Generated based on /usr/include/curl/curl.h:363:9 | |
else: | |
let CURL_FNMATCHFUNC_NOMATCH* = 1 ## Generated based on /usr/include/curl/curl.h:363:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_FNMATCHFUNC_NOMATCH" & | |
" already exists, not redeclaring") | |
when not declared(CURL_FNMATCHFUNC_FAIL): | |
when 2 is static: | |
const | |
CURL_FNMATCHFUNC_FAIL* = 2 ## Generated based on /usr/include/curl/curl.h:364:9 | |
else: | |
let CURL_FNMATCHFUNC_FAIL* = 2 ## Generated based on /usr/include/curl/curl.h:364:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_FNMATCHFUNC_FAIL" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SEEKFUNC_OK): | |
when 0 is static: | |
const | |
CURL_SEEKFUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:373:9 | |
else: | |
let CURL_SEEKFUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:373:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SEEKFUNC_OK" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SEEKFUNC_FAIL): | |
when 1 is static: | |
const | |
CURL_SEEKFUNC_FAIL* = 1 ## Generated based on /usr/include/curl/curl.h:374:9 | |
else: | |
let CURL_SEEKFUNC_FAIL* = 1 ## Generated based on /usr/include/curl/curl.h:374:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SEEKFUNC_FAIL" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SEEKFUNC_CANTSEEK): | |
when 2 is static: | |
const | |
CURL_SEEKFUNC_CANTSEEK* = 2 ## Generated based on /usr/include/curl/curl.h:375:9 | |
else: | |
let CURL_SEEKFUNC_CANTSEEK* = 2 ## Generated based on /usr/include/curl/curl.h:375:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SEEKFUNC_CANTSEEK" & | |
" already exists, not redeclaring") | |
when not declared(CURL_READFUNC_ABORT): | |
when 268435456 is static: | |
const | |
CURL_READFUNC_ABORT* = 268435456 ## Generated based on /usr/include/curl/curl.h:383:9 | |
else: | |
let CURL_READFUNC_ABORT* = 268435456 ## Generated based on /usr/include/curl/curl.h:383:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_READFUNC_ABORT" & | |
" already exists, not redeclaring") | |
when not declared(CURL_READFUNC_PAUSE): | |
when 268435457 is static: | |
const | |
CURL_READFUNC_PAUSE* = 268435457 ## Generated based on /usr/include/curl/curl.h:386:9 | |
else: | |
let CURL_READFUNC_PAUSE* = 268435457 ## Generated based on /usr/include/curl/curl.h:386:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_READFUNC_PAUSE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_TRAILERFUNC_OK): | |
when 0 is static: | |
const | |
CURL_TRAILERFUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:390:9 | |
else: | |
let CURL_TRAILERFUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:390:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_TRAILERFUNC_OK" & | |
" already exists, not redeclaring") | |
when not declared(CURL_TRAILERFUNC_ABORT): | |
when 1 is static: | |
const | |
CURL_TRAILERFUNC_ABORT* = 1 ## Generated based on /usr/include/curl/curl.h:393:9 | |
else: | |
let CURL_TRAILERFUNC_ABORT* = 1 ## Generated based on /usr/include/curl/curl.h:393:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_TRAILERFUNC_ABORT" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SOCKOPT_OK): | |
when 0 is static: | |
const | |
CURL_SOCKOPT_OK* = 0 ## Generated based on /usr/include/curl/curl.h:411:9 | |
else: | |
let CURL_SOCKOPT_OK* = 0 ## Generated based on /usr/include/curl/curl.h:411:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SOCKOPT_OK" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SOCKOPT_ERROR): | |
when 1 is static: | |
const | |
CURL_SOCKOPT_ERROR* = 1 ## Generated based on /usr/include/curl/curl.h:412:9 | |
else: | |
let CURL_SOCKOPT_ERROR* = 1 ## Generated based on /usr/include/curl/curl.h:412:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SOCKOPT_ERROR" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SOCKOPT_ALREADY_CONNECTED): | |
when 2 is static: | |
const | |
CURL_SOCKOPT_ALREADY_CONNECTED* = 2 ## Generated based on /usr/include/curl/curl.h:414:9 | |
else: | |
let CURL_SOCKOPT_ALREADY_CONNECTED* = 2 ## Generated based on /usr/include/curl/curl.h:414:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SOCKOPT_ALREADY_CONNECTED" & | |
" already exists, not redeclaring") | |
when not declared(CURL_PREREQFUNC_OK): | |
when 0 is static: | |
const | |
CURL_PREREQFUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:499:9 | |
else: | |
let CURL_PREREQFUNC_OK* = 0 ## Generated based on /usr/include/curl/curl.h:499:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_PREREQFUNC_OK" & | |
" already exists, not redeclaring") | |
when not declared(CURL_PREREQFUNC_ABORT): | |
when 1 is static: | |
const | |
CURL_PREREQFUNC_ABORT* = 1 ## Generated based on /usr/include/curl/curl.h:502:9 | |
else: | |
let CURL_PREREQFUNC_ABORT* = 1 ## Generated based on /usr/include/curl/curl.h:502:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_PREREQFUNC_ABORT" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_OBSOLETE16): | |
when CURLE_HTTP2 is typedesc: | |
type | |
CURLE_OBSOLETE16* = CURLE_HTTP2 ## Generated based on /usr/include/curl/curl.h:647:9 | |
else: | |
when CURLE_HTTP2 is static: | |
const | |
CURLE_OBSOLETE16* = CURLE_HTTP2 ## Generated based on /usr/include/curl/curl.h:647:9 | |
else: | |
let CURLE_OBSOLETE16* = CURLE_HTTP2 ## Generated based on /usr/include/curl/curl.h:647:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_OBSOLETE16" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_OBSOLETE10): | |
when CURLE_FTP_ACCEPT_FAILED is typedesc: | |
type | |
CURLE_OBSOLETE10* = CURLE_FTP_ACCEPT_FAILED ## Generated based on /usr/include/curl/curl.h:650:9 | |
else: | |
when CURLE_FTP_ACCEPT_FAILED is static: | |
const | |
CURLE_OBSOLETE10* = CURLE_FTP_ACCEPT_FAILED ## Generated based on /usr/include/curl/curl.h:650:9 | |
else: | |
let CURLE_OBSOLETE10* = CURLE_FTP_ACCEPT_FAILED ## Generated based on /usr/include/curl/curl.h:650:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_OBSOLETE10" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_OBSOLETE12): | |
when CURLE_FTP_ACCEPT_TIMEOUT is typedesc: | |
type | |
CURLE_OBSOLETE12* = CURLE_FTP_ACCEPT_TIMEOUT ## Generated based on /usr/include/curl/curl.h:651:9 | |
else: | |
when CURLE_FTP_ACCEPT_TIMEOUT is static: | |
const | |
CURLE_OBSOLETE12* = CURLE_FTP_ACCEPT_TIMEOUT ## Generated based on /usr/include/curl/curl.h:651:9 | |
else: | |
let CURLE_OBSOLETE12* = CURLE_FTP_ACCEPT_TIMEOUT ## Generated based on /usr/include/curl/curl.h:651:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_OBSOLETE12" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_ENCODING): | |
when CURLOPT_ACCEPT_ENCODING is typedesc: | |
type | |
CURLOPT_ENCODING* = CURLOPT_ACCEPT_ENCODING ## Generated based on /usr/include/curl/curl.h:654:9 | |
else: | |
when CURLOPT_ACCEPT_ENCODING is static: | |
const | |
CURLOPT_ENCODING* = CURLOPT_ACCEPT_ENCODING ## Generated based on /usr/include/curl/curl.h:654:9 | |
else: | |
let CURLOPT_ENCODING* = CURLOPT_ACCEPT_ENCODING ## Generated based on /usr/include/curl/curl.h:654:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_ENCODING" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_WEIRD_SERVER_REPLY): | |
when CURLE_WEIRD_SERVER_REPLY is typedesc: | |
type | |
CURLE_FTP_WEIRD_SERVER_REPLY* = CURLE_WEIRD_SERVER_REPLY ## Generated based on /usr/include/curl/curl.h:655:9 | |
else: | |
when CURLE_WEIRD_SERVER_REPLY is static: | |
const | |
CURLE_FTP_WEIRD_SERVER_REPLY* = CURLE_WEIRD_SERVER_REPLY ## Generated based on /usr/include/curl/curl.h:655:9 | |
else: | |
let CURLE_FTP_WEIRD_SERVER_REPLY* = CURLE_WEIRD_SERVER_REPLY ## Generated based on /usr/include/curl/curl.h:655:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_WEIRD_SERVER_REPLY" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_SSL_CACERT): | |
when CURLE_PEER_FAILED_VERIFICATION is typedesc: | |
type | |
CURLE_SSL_CACERT* = CURLE_PEER_FAILED_VERIFICATION ## Generated based on /usr/include/curl/curl.h:658:9 | |
else: | |
when CURLE_PEER_FAILED_VERIFICATION is static: | |
const | |
CURLE_SSL_CACERT* = CURLE_PEER_FAILED_VERIFICATION ## Generated based on /usr/include/curl/curl.h:658:9 | |
else: | |
let CURLE_SSL_CACERT* = CURLE_PEER_FAILED_VERIFICATION ## Generated based on /usr/include/curl/curl.h:658:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_SSL_CACERT" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_UNKNOWN_TELNET_OPTION): | |
when CURLE_UNKNOWN_OPTION is typedesc: | |
type | |
CURLE_UNKNOWN_TELNET_OPTION* = CURLE_UNKNOWN_OPTION ## Generated based on /usr/include/curl/curl.h:661:9 | |
else: | |
when CURLE_UNKNOWN_OPTION is static: | |
const | |
CURLE_UNKNOWN_TELNET_OPTION* = CURLE_UNKNOWN_OPTION ## Generated based on /usr/include/curl/curl.h:661:9 | |
else: | |
let CURLE_UNKNOWN_TELNET_OPTION* = CURLE_UNKNOWN_OPTION ## Generated based on /usr/include/curl/curl.h:661:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_UNKNOWN_TELNET_OPTION" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_TELNET_OPTION_SYNTAX): | |
when CURLE_SETOPT_OPTION_SYNTAX is typedesc: | |
type | |
CURLE_TELNET_OPTION_SYNTAX* = CURLE_SETOPT_OPTION_SYNTAX ## Generated based on /usr/include/curl/curl.h:664:9 | |
else: | |
when CURLE_SETOPT_OPTION_SYNTAX is static: | |
const | |
CURLE_TELNET_OPTION_SYNTAX* = CURLE_SETOPT_OPTION_SYNTAX ## Generated based on /usr/include/curl/curl.h:664:9 | |
else: | |
let CURLE_TELNET_OPTION_SYNTAX* = CURLE_SETOPT_OPTION_SYNTAX ## Generated based on /usr/include/curl/curl.h:664:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_TELNET_OPTION_SYNTAX" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_SSL_PEER_CERTIFICATE): | |
when CURLE_PEER_FAILED_VERIFICATION is typedesc: | |
type | |
CURLE_SSL_PEER_CERTIFICATE* = CURLE_PEER_FAILED_VERIFICATION ## Generated based on /usr/include/curl/curl.h:668:9 | |
else: | |
when CURLE_PEER_FAILED_VERIFICATION is static: | |
const | |
CURLE_SSL_PEER_CERTIFICATE* = CURLE_PEER_FAILED_VERIFICATION ## Generated based on /usr/include/curl/curl.h:668:9 | |
else: | |
let CURLE_SSL_PEER_CERTIFICATE* = CURLE_PEER_FAILED_VERIFICATION ## Generated based on /usr/include/curl/curl.h:668:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_SSL_PEER_CERTIFICATE" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_OBSOLETE): | |
when CURLE_OBSOLETE50 is typedesc: | |
type | |
CURLE_OBSOLETE* = CURLE_OBSOLETE50 ## Generated based on /usr/include/curl/curl.h:672:9 | |
else: | |
when CURLE_OBSOLETE50 is static: | |
const | |
CURLE_OBSOLETE* = CURLE_OBSOLETE50 ## Generated based on /usr/include/curl/curl.h:672:9 | |
else: | |
let CURLE_OBSOLETE* = CURLE_OBSOLETE50 ## Generated based on /usr/include/curl/curl.h:672:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_OBSOLETE" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_BAD_PASSWORD_ENTERED): | |
when CURLE_OBSOLETE46 is typedesc: | |
type | |
CURLE_BAD_PASSWORD_ENTERED* = CURLE_OBSOLETE46 ## Generated based on /usr/include/curl/curl.h:673:9 | |
else: | |
when CURLE_OBSOLETE46 is static: | |
const | |
CURLE_BAD_PASSWORD_ENTERED* = CURLE_OBSOLETE46 ## Generated based on /usr/include/curl/curl.h:673:9 | |
else: | |
let CURLE_BAD_PASSWORD_ENTERED* = CURLE_OBSOLETE46 ## Generated based on /usr/include/curl/curl.h:673:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_BAD_PASSWORD_ENTERED" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_BAD_CALLING_ORDER): | |
when CURLE_OBSOLETE44 is typedesc: | |
type | |
CURLE_BAD_CALLING_ORDER* = CURLE_OBSOLETE44 ## Generated based on /usr/include/curl/curl.h:674:9 | |
else: | |
when CURLE_OBSOLETE44 is static: | |
const | |
CURLE_BAD_CALLING_ORDER* = CURLE_OBSOLETE44 ## Generated based on /usr/include/curl/curl.h:674:9 | |
else: | |
let CURLE_BAD_CALLING_ORDER* = CURLE_OBSOLETE44 ## Generated based on /usr/include/curl/curl.h:674:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_BAD_CALLING_ORDER" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_COULDNT_GET_SIZE): | |
when CURLE_OBSOLETE32 is typedesc: | |
type | |
CURLE_FTP_COULDNT_GET_SIZE* = CURLE_OBSOLETE32 ## Generated based on /usr/include/curl/curl.h:677:9 | |
else: | |
when CURLE_OBSOLETE32 is static: | |
const | |
CURLE_FTP_COULDNT_GET_SIZE* = CURLE_OBSOLETE32 ## Generated based on /usr/include/curl/curl.h:677:9 | |
else: | |
let CURLE_FTP_COULDNT_GET_SIZE* = CURLE_OBSOLETE32 ## Generated based on /usr/include/curl/curl.h:677:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_COULDNT_GET_SIZE" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_COULDNT_SET_ASCII): | |
when CURLE_OBSOLETE29 is typedesc: | |
type | |
CURLE_FTP_COULDNT_SET_ASCII* = CURLE_OBSOLETE29 ## Generated based on /usr/include/curl/curl.h:678:9 | |
else: | |
when CURLE_OBSOLETE29 is static: | |
const | |
CURLE_FTP_COULDNT_SET_ASCII* = CURLE_OBSOLETE29 ## Generated based on /usr/include/curl/curl.h:678:9 | |
else: | |
let CURLE_FTP_COULDNT_SET_ASCII* = CURLE_OBSOLETE29 ## Generated based on /usr/include/curl/curl.h:678:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_COULDNT_SET_ASCII" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_WRITE_ERROR): | |
when CURLE_OBSOLETE20 is typedesc: | |
type | |
CURLE_FTP_WRITE_ERROR* = CURLE_OBSOLETE20 ## Generated based on /usr/include/curl/curl.h:680:9 | |
else: | |
when CURLE_OBSOLETE20 is static: | |
const | |
CURLE_FTP_WRITE_ERROR* = CURLE_OBSOLETE20 ## Generated based on /usr/include/curl/curl.h:680:9 | |
else: | |
let CURLE_FTP_WRITE_ERROR* = CURLE_OBSOLETE20 ## Generated based on /usr/include/curl/curl.h:680:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_WRITE_ERROR" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_LIBRARY_NOT_FOUND): | |
when CURLE_OBSOLETE40 is typedesc: | |
type | |
CURLE_LIBRARY_NOT_FOUND* = CURLE_OBSOLETE40 ## Generated based on /usr/include/curl/curl.h:681:9 | |
else: | |
when CURLE_OBSOLETE40 is static: | |
const | |
CURLE_LIBRARY_NOT_FOUND* = CURLE_OBSOLETE40 ## Generated based on /usr/include/curl/curl.h:681:9 | |
else: | |
let CURLE_LIBRARY_NOT_FOUND* = CURLE_OBSOLETE40 ## Generated based on /usr/include/curl/curl.h:681:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_LIBRARY_NOT_FOUND" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_MALFORMAT_USER): | |
when CURLE_OBSOLETE24 is typedesc: | |
type | |
CURLE_MALFORMAT_USER* = CURLE_OBSOLETE24 ## Generated based on /usr/include/curl/curl.h:682:9 | |
else: | |
when CURLE_OBSOLETE24 is static: | |
const | |
CURLE_MALFORMAT_USER* = CURLE_OBSOLETE24 ## Generated based on /usr/include/curl/curl.h:682:9 | |
else: | |
let CURLE_MALFORMAT_USER* = CURLE_OBSOLETE24 ## Generated based on /usr/include/curl/curl.h:682:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_MALFORMAT_USER" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_SHARE_IN_USE): | |
when CURLE_OBSOLETE57 is typedesc: | |
type | |
CURLE_SHARE_IN_USE* = CURLE_OBSOLETE57 ## Generated based on /usr/include/curl/curl.h:683:9 | |
else: | |
when CURLE_OBSOLETE57 is static: | |
const | |
CURLE_SHARE_IN_USE* = CURLE_OBSOLETE57 ## Generated based on /usr/include/curl/curl.h:683:9 | |
else: | |
let CURLE_SHARE_IN_USE* = CURLE_OBSOLETE57 ## Generated based on /usr/include/curl/curl.h:683:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_SHARE_IN_USE" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_URL_MALFORMAT_USER): | |
when CURLE_NOT_BUILT_IN is typedesc: | |
type | |
CURLE_URL_MALFORMAT_USER* = CURLE_NOT_BUILT_IN ## Generated based on /usr/include/curl/curl.h:684:9 | |
else: | |
when CURLE_NOT_BUILT_IN is static: | |
const | |
CURLE_URL_MALFORMAT_USER* = CURLE_NOT_BUILT_IN ## Generated based on /usr/include/curl/curl.h:684:9 | |
else: | |
let CURLE_URL_MALFORMAT_USER* = CURLE_NOT_BUILT_IN ## Generated based on /usr/include/curl/curl.h:684:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_URL_MALFORMAT_USER" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_ACCESS_DENIED): | |
when CURLE_REMOTE_ACCESS_DENIED is typedesc: | |
type | |
CURLE_FTP_ACCESS_DENIED* = CURLE_REMOTE_ACCESS_DENIED ## Generated based on /usr/include/curl/curl.h:686:9 | |
else: | |
when CURLE_REMOTE_ACCESS_DENIED is static: | |
const | |
CURLE_FTP_ACCESS_DENIED* = CURLE_REMOTE_ACCESS_DENIED ## Generated based on /usr/include/curl/curl.h:686:9 | |
else: | |
let CURLE_FTP_ACCESS_DENIED* = CURLE_REMOTE_ACCESS_DENIED ## Generated based on /usr/include/curl/curl.h:686:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_ACCESS_DENIED" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_COULDNT_SET_BINARY): | |
when CURLE_FTP_COULDNT_SET_TYPE is typedesc: | |
type | |
CURLE_FTP_COULDNT_SET_BINARY* = CURLE_FTP_COULDNT_SET_TYPE ## Generated based on /usr/include/curl/curl.h:687:9 | |
else: | |
when CURLE_FTP_COULDNT_SET_TYPE is static: | |
const | |
CURLE_FTP_COULDNT_SET_BINARY* = CURLE_FTP_COULDNT_SET_TYPE ## Generated based on /usr/include/curl/curl.h:687:9 | |
else: | |
let CURLE_FTP_COULDNT_SET_BINARY* = CURLE_FTP_COULDNT_SET_TYPE ## Generated based on /usr/include/curl/curl.h:687:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_COULDNT_SET_BINARY" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_QUOTE_ERROR): | |
when CURLE_QUOTE_ERROR is typedesc: | |
type | |
CURLE_FTP_QUOTE_ERROR* = CURLE_QUOTE_ERROR ## Generated based on /usr/include/curl/curl.h:688:9 | |
else: | |
when CURLE_QUOTE_ERROR is static: | |
const | |
CURLE_FTP_QUOTE_ERROR* = CURLE_QUOTE_ERROR ## Generated based on /usr/include/curl/curl.h:688:9 | |
else: | |
let CURLE_FTP_QUOTE_ERROR* = CURLE_QUOTE_ERROR ## Generated based on /usr/include/curl/curl.h:688:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_QUOTE_ERROR" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_TFTP_DISKFULL): | |
when CURLE_REMOTE_DISK_FULL is typedesc: | |
type | |
CURLE_TFTP_DISKFULL* = CURLE_REMOTE_DISK_FULL ## Generated based on /usr/include/curl/curl.h:689:9 | |
else: | |
when CURLE_REMOTE_DISK_FULL is static: | |
const | |
CURLE_TFTP_DISKFULL* = CURLE_REMOTE_DISK_FULL ## Generated based on /usr/include/curl/curl.h:689:9 | |
else: | |
let CURLE_TFTP_DISKFULL* = CURLE_REMOTE_DISK_FULL ## Generated based on /usr/include/curl/curl.h:689:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_TFTP_DISKFULL" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_TFTP_EXISTS): | |
when CURLE_REMOTE_FILE_EXISTS is typedesc: | |
type | |
CURLE_TFTP_EXISTS* = CURLE_REMOTE_FILE_EXISTS ## Generated based on /usr/include/curl/curl.h:690:9 | |
else: | |
when CURLE_REMOTE_FILE_EXISTS is static: | |
const | |
CURLE_TFTP_EXISTS* = CURLE_REMOTE_FILE_EXISTS ## Generated based on /usr/include/curl/curl.h:690:9 | |
else: | |
let CURLE_TFTP_EXISTS* = CURLE_REMOTE_FILE_EXISTS ## Generated based on /usr/include/curl/curl.h:690:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_TFTP_EXISTS" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_HTTP_RANGE_ERROR): | |
when CURLE_RANGE_ERROR is typedesc: | |
type | |
CURLE_HTTP_RANGE_ERROR* = CURLE_RANGE_ERROR ## Generated based on /usr/include/curl/curl.h:691:9 | |
else: | |
when CURLE_RANGE_ERROR is static: | |
const | |
CURLE_HTTP_RANGE_ERROR* = CURLE_RANGE_ERROR ## Generated based on /usr/include/curl/curl.h:691:9 | |
else: | |
let CURLE_HTTP_RANGE_ERROR* = CURLE_RANGE_ERROR ## Generated based on /usr/include/curl/curl.h:691:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_HTTP_RANGE_ERROR" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_SSL_FAILED): | |
when CURLE_USE_SSL_FAILED is typedesc: | |
type | |
CURLE_FTP_SSL_FAILED* = CURLE_USE_SSL_FAILED ## Generated based on /usr/include/curl/curl.h:692:9 | |
else: | |
when CURLE_USE_SSL_FAILED is static: | |
const | |
CURLE_FTP_SSL_FAILED* = CURLE_USE_SSL_FAILED ## Generated based on /usr/include/curl/curl.h:692:9 | |
else: | |
let CURLE_FTP_SSL_FAILED* = CURLE_USE_SSL_FAILED ## Generated based on /usr/include/curl/curl.h:692:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_SSL_FAILED" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_OPERATION_TIMEOUTED): | |
when CURLE_OPERATION_TIMEDOUT is typedesc: | |
type | |
CURLE_OPERATION_TIMEOUTED* = CURLE_OPERATION_TIMEDOUT ## Generated based on /usr/include/curl/curl.h:696:9 | |
else: | |
when CURLE_OPERATION_TIMEDOUT is static: | |
const | |
CURLE_OPERATION_TIMEOUTED* = CURLE_OPERATION_TIMEDOUT ## Generated based on /usr/include/curl/curl.h:696:9 | |
else: | |
let CURLE_OPERATION_TIMEOUTED* = CURLE_OPERATION_TIMEDOUT ## Generated based on /usr/include/curl/curl.h:696:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_OPERATION_TIMEOUTED" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_HTTP_NOT_FOUND): | |
when CURLE_HTTP_RETURNED_ERROR is typedesc: | |
type | |
CURLE_HTTP_NOT_FOUND* = CURLE_HTTP_RETURNED_ERROR ## Generated based on /usr/include/curl/curl.h:697:9 | |
else: | |
when CURLE_HTTP_RETURNED_ERROR is static: | |
const | |
CURLE_HTTP_NOT_FOUND* = CURLE_HTTP_RETURNED_ERROR ## Generated based on /usr/include/curl/curl.h:697:9 | |
else: | |
let CURLE_HTTP_NOT_FOUND* = CURLE_HTTP_RETURNED_ERROR ## Generated based on /usr/include/curl/curl.h:697:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_HTTP_NOT_FOUND" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_HTTP_PORT_FAILED): | |
when CURLE_INTERFACE_FAILED is typedesc: | |
type | |
CURLE_HTTP_PORT_FAILED* = CURLE_INTERFACE_FAILED ## Generated based on /usr/include/curl/curl.h:698:9 | |
else: | |
when CURLE_INTERFACE_FAILED is static: | |
const | |
CURLE_HTTP_PORT_FAILED* = CURLE_INTERFACE_FAILED ## Generated based on /usr/include/curl/curl.h:698:9 | |
else: | |
let CURLE_HTTP_PORT_FAILED* = CURLE_INTERFACE_FAILED ## Generated based on /usr/include/curl/curl.h:698:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_HTTP_PORT_FAILED" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_COULDNT_STOR_FILE): | |
when CURLE_UPLOAD_FAILED is typedesc: | |
type | |
CURLE_FTP_COULDNT_STOR_FILE* = CURLE_UPLOAD_FAILED ## Generated based on /usr/include/curl/curl.h:699:9 | |
else: | |
when CURLE_UPLOAD_FAILED is static: | |
const | |
CURLE_FTP_COULDNT_STOR_FILE* = CURLE_UPLOAD_FAILED ## Generated based on /usr/include/curl/curl.h:699:9 | |
else: | |
let CURLE_FTP_COULDNT_STOR_FILE* = CURLE_UPLOAD_FAILED ## Generated based on /usr/include/curl/curl.h:699:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_COULDNT_STOR_FILE" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_PARTIAL_FILE): | |
when CURLE_PARTIAL_FILE is typedesc: | |
type | |
CURLE_FTP_PARTIAL_FILE* = CURLE_PARTIAL_FILE ## Generated based on /usr/include/curl/curl.h:700:9 | |
else: | |
when CURLE_PARTIAL_FILE is static: | |
const | |
CURLE_FTP_PARTIAL_FILE* = CURLE_PARTIAL_FILE ## Generated based on /usr/include/curl/curl.h:700:9 | |
else: | |
let CURLE_FTP_PARTIAL_FILE* = CURLE_PARTIAL_FILE ## Generated based on /usr/include/curl/curl.h:700:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_PARTIAL_FILE" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_FTP_BAD_DOWNLOAD_RESUME): | |
when CURLE_BAD_DOWNLOAD_RESUME is typedesc: | |
type | |
CURLE_FTP_BAD_DOWNLOAD_RESUME* = CURLE_BAD_DOWNLOAD_RESUME ## Generated based on /usr/include/curl/curl.h:701:9 | |
else: | |
when CURLE_BAD_DOWNLOAD_RESUME is static: | |
const | |
CURLE_FTP_BAD_DOWNLOAD_RESUME* = CURLE_BAD_DOWNLOAD_RESUME ## Generated based on /usr/include/curl/curl.h:701:9 | |
else: | |
let CURLE_FTP_BAD_DOWNLOAD_RESUME* = CURLE_BAD_DOWNLOAD_RESUME ## Generated based on /usr/include/curl/curl.h:701:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_FTP_BAD_DOWNLOAD_RESUME" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_LDAP_INVALID_URL): | |
when CURLE_OBSOLETE62 is typedesc: | |
type | |
CURLE_LDAP_INVALID_URL* = CURLE_OBSOLETE62 ## Generated based on /usr/include/curl/curl.h:702:9 | |
else: | |
when CURLE_OBSOLETE62 is static: | |
const | |
CURLE_LDAP_INVALID_URL* = CURLE_OBSOLETE62 ## Generated based on /usr/include/curl/curl.h:702:9 | |
else: | |
let CURLE_LDAP_INVALID_URL* = CURLE_OBSOLETE62 ## Generated based on /usr/include/curl/curl.h:702:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_LDAP_INVALID_URL" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_CONV_REQD): | |
when CURLE_OBSOLETE76 is typedesc: | |
type | |
CURLE_CONV_REQD* = CURLE_OBSOLETE76 ## Generated based on /usr/include/curl/curl.h:703:9 | |
else: | |
when CURLE_OBSOLETE76 is static: | |
const | |
CURLE_CONV_REQD* = CURLE_OBSOLETE76 ## Generated based on /usr/include/curl/curl.h:703:9 | |
else: | |
let CURLE_CONV_REQD* = CURLE_OBSOLETE76 ## Generated based on /usr/include/curl/curl.h:703:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_CONV_REQD" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_CONV_FAILED): | |
when CURLE_OBSOLETE75 is typedesc: | |
type | |
CURLE_CONV_FAILED* = CURLE_OBSOLETE75 ## Generated based on /usr/include/curl/curl.h:704:9 | |
else: | |
when CURLE_OBSOLETE75 is static: | |
const | |
CURLE_CONV_FAILED* = CURLE_OBSOLETE75 ## Generated based on /usr/include/curl/curl.h:704:9 | |
else: | |
let CURLE_CONV_FAILED* = CURLE_OBSOLETE75 ## Generated based on /usr/include/curl/curl.h:704:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_CONV_FAILED" & | |
" already exists, not redeclaring") | |
when not declared(CURLE_ALREADY_COMPLETE): | |
when 99999 is static: | |
const | |
CURLE_ALREADY_COMPLETE* = 99999 ## Generated based on /usr/include/curl/curl.h:709:9 | |
else: | |
let CURLE_ALREADY_COMPLETE* = 99999 ## Generated based on /usr/include/curl/curl.h:709:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLE_ALREADY_COMPLETE" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_FILE): | |
when CURLOPT_WRITEDATA is typedesc: | |
type | |
CURLOPT_FILE* = CURLOPT_WRITEDATA ## Generated based on /usr/include/curl/curl.h:712:9 | |
else: | |
when CURLOPT_WRITEDATA is static: | |
const | |
CURLOPT_FILE* = CURLOPT_WRITEDATA ## Generated based on /usr/include/curl/curl.h:712:9 | |
else: | |
let CURLOPT_FILE* = CURLOPT_WRITEDATA ## Generated based on /usr/include/curl/curl.h:712:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_FILE" & " already exists, not redeclaring") | |
when not declared(CURLOPT_INFILE): | |
when CURLOPT_READDATA is typedesc: | |
type | |
CURLOPT_INFILE* = CURLOPT_READDATA ## Generated based on /usr/include/curl/curl.h:713:9 | |
else: | |
when CURLOPT_READDATA is static: | |
const | |
CURLOPT_INFILE* = CURLOPT_READDATA ## Generated based on /usr/include/curl/curl.h:713:9 | |
else: | |
let CURLOPT_INFILE* = CURLOPT_READDATA ## Generated based on /usr/include/curl/curl.h:713:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_INFILE" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_WRITEHEADER): | |
when CURLOPT_HEADERDATA is typedesc: | |
type | |
CURLOPT_WRITEHEADER* = CURLOPT_HEADERDATA ## Generated based on /usr/include/curl/curl.h:714:9 | |
else: | |
when CURLOPT_HEADERDATA is static: | |
const | |
CURLOPT_WRITEHEADER* = CURLOPT_HEADERDATA ## Generated based on /usr/include/curl/curl.h:714:9 | |
else: | |
let CURLOPT_WRITEHEADER* = CURLOPT_HEADERDATA ## Generated based on /usr/include/curl/curl.h:714:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_WRITEHEADER" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_OBSOLETE40): | |
when 9999 is static: | |
const | |
CURLOPT_OBSOLETE40* = 9999 ## Generated based on /usr/include/curl/curl.h:721:9 | |
else: | |
let CURLOPT_OBSOLETE40* = 9999 ## Generated based on /usr/include/curl/curl.h:721:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_OBSOLETE40" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_OBSOLETE72): | |
when 9999 is static: | |
const | |
CURLOPT_OBSOLETE72* = 9999 ## Generated based on /usr/include/curl/curl.h:720:9 | |
else: | |
let CURLOPT_OBSOLETE72* = 9999 ## Generated based on /usr/include/curl/curl.h:720:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_OBSOLETE72" & | |
" already exists, not redeclaring") | |
when not declared(CURLAUTH_GSSNEGOTIATE): | |
when CURLAUTH_NEGOTIATE is typedesc: | |
type | |
CURLAUTH_GSSNEGOTIATE* = CURLAUTH_NEGOTIATE ## Generated based on /usr/include/curl/curl.h:816:9 | |
else: | |
when CURLAUTH_NEGOTIATE is static: | |
const | |
CURLAUTH_GSSNEGOTIATE* = CURLAUTH_NEGOTIATE ## Generated based on /usr/include/curl/curl.h:816:9 | |
else: | |
let CURLAUTH_GSSNEGOTIATE* = CURLAUTH_NEGOTIATE ## Generated based on /usr/include/curl/curl.h:816:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLAUTH_GSSNEGOTIATE" & | |
" already exists, not redeclaring") | |
when not declared(CURLAUTH_GSSAPI): | |
when CURLAUTH_NEGOTIATE is typedesc: | |
type | |
CURLAUTH_GSSAPI* = CURLAUTH_NEGOTIATE ## Generated based on /usr/include/curl/curl.h:818:9 | |
else: | |
when CURLAUTH_NEGOTIATE is static: | |
const | |
CURLAUTH_GSSAPI* = CURLAUTH_NEGOTIATE ## Generated based on /usr/include/curl/curl.h:818:9 | |
else: | |
let CURLAUTH_GSSAPI* = CURLAUTH_NEGOTIATE ## Generated based on /usr/include/curl/curl.h:818:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLAUTH_GSSAPI" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSH_AUTH_NONE): | |
when 0 is static: | |
const | |
CURLSSH_AUTH_NONE* = 0 ## Generated based on /usr/include/curl/curl.h:832:9 | |
else: | |
let CURLSSH_AUTH_NONE* = 0 ## Generated based on /usr/include/curl/curl.h:832:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLSSH_AUTH_NONE" & | |
" already exists, not redeclaring") | |
when not declared(CURLSSH_AUTH_DEFAULT): | |
when CURLSSH_AUTH_ANY is typedesc: | |
type | |
CURLSSH_AUTH_DEFAULT* = CURLSSH_AUTH_ANY ## Generated based on /usr/include/curl/curl.h:839:9 | |
else: | |
when CURLSSH_AUTH_ANY is static: | |
const | |
CURLSSH_AUTH_DEFAULT* = CURLSSH_AUTH_ANY ## Generated based on /usr/include/curl/curl.h:839:9 | |
else: | |
let CURLSSH_AUTH_DEFAULT* = CURLSSH_AUTH_ANY ## Generated based on /usr/include/curl/curl.h:839:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLSSH_AUTH_DEFAULT" & | |
" already exists, not redeclaring") | |
when not declared(CURLGSSAPI_DELEGATION_NONE): | |
when 0 is static: | |
const | |
CURLGSSAPI_DELEGATION_NONE* = 0 ## Generated based on /usr/include/curl/curl.h:841:9 | |
else: | |
let CURLGSSAPI_DELEGATION_NONE* = 0 ## Generated based on /usr/include/curl/curl.h:841:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLGSSAPI_DELEGATION_NONE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_ERROR_SIZE): | |
when 256 is static: | |
const | |
CURL_ERROR_SIZE* = 256 ## Generated based on /usr/include/curl/curl.h:845:9 | |
else: | |
let CURL_ERROR_SIZE* = 256 ## Generated based on /usr/include/curl/curl.h:845:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_ERROR_SIZE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HET_DEFAULT): | |
when cast[clong](200'i64) is static: | |
const | |
CURL_HET_DEFAULT* = cast[clong](200'i64) ## Generated based on /usr/include/curl/curl.h:947:9 | |
else: | |
let CURL_HET_DEFAULT* = cast[clong](200'i64) ## Generated based on /usr/include/curl/curl.h:947:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_HET_DEFAULT" & | |
" already exists, not redeclaring") | |
when not declared(CURL_UPKEEP_INTERVAL_DEFAULT): | |
when cast[clong](60000'i64) is static: | |
const | |
CURL_UPKEEP_INTERVAL_DEFAULT* = cast[clong](60000'i64) ## Generated based on /usr/include/curl/curl.h:950:9 | |
else: | |
let CURL_UPKEEP_INTERVAL_DEFAULT* = cast[clong](60000'i64) ## Generated based on /usr/include/curl/curl.h:950:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_UPKEEP_INTERVAL_DEFAULT" & | |
" already exists, not redeclaring") | |
when not declared(CURLFTPSSL_NONE): | |
when CURLUSESSL_NONE is typedesc: | |
type | |
CURLFTPSSL_NONE* = CURLUSESSL_NONE ## Generated based on /usr/include/curl/curl.h:958:9 | |
else: | |
when CURLUSESSL_NONE is static: | |
const | |
CURLFTPSSL_NONE* = CURLUSESSL_NONE ## Generated based on /usr/include/curl/curl.h:958:9 | |
else: | |
let CURLFTPSSL_NONE* = CURLUSESSL_NONE ## Generated based on /usr/include/curl/curl.h:958:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLFTPSSL_NONE" & | |
" already exists, not redeclaring") | |
when not declared(CURLFTPSSL_TRY): | |
when CURLUSESSL_TRY is typedesc: | |
type | |
CURLFTPSSL_TRY* = CURLUSESSL_TRY ## Generated based on /usr/include/curl/curl.h:959:9 | |
else: | |
when CURLUSESSL_TRY is static: | |
const | |
CURLFTPSSL_TRY* = CURLUSESSL_TRY ## Generated based on /usr/include/curl/curl.h:959:9 | |
else: | |
let CURLFTPSSL_TRY* = CURLUSESSL_TRY ## Generated based on /usr/include/curl/curl.h:959:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLFTPSSL_TRY" & | |
" already exists, not redeclaring") | |
when not declared(CURLFTPSSL_CONTROL): | |
when CURLUSESSL_CONTROL is typedesc: | |
type | |
CURLFTPSSL_CONTROL* = CURLUSESSL_CONTROL ## Generated based on /usr/include/curl/curl.h:960:9 | |
else: | |
when CURLUSESSL_CONTROL is static: | |
const | |
CURLFTPSSL_CONTROL* = CURLUSESSL_CONTROL ## Generated based on /usr/include/curl/curl.h:960:9 | |
else: | |
let CURLFTPSSL_CONTROL* = CURLUSESSL_CONTROL ## Generated based on /usr/include/curl/curl.h:960:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLFTPSSL_CONTROL" & | |
" already exists, not redeclaring") | |
when not declared(CURLFTPSSL_ALL): | |
when CURLUSESSL_ALL is typedesc: | |
type | |
CURLFTPSSL_ALL* = CURLUSESSL_ALL ## Generated based on /usr/include/curl/curl.h:961:9 | |
else: | |
when CURLUSESSL_ALL is static: | |
const | |
CURLFTPSSL_ALL* = CURLUSESSL_ALL ## Generated based on /usr/include/curl/curl.h:961:9 | |
else: | |
let CURLFTPSSL_ALL* = CURLUSESSL_ALL ## Generated based on /usr/include/curl/curl.h:961:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLFTPSSL_ALL" & | |
" already exists, not redeclaring") | |
when not declared(CURLFTPSSL_LAST): | |
when CURLUSESSL_LAST is typedesc: | |
type | |
CURLFTPSSL_LAST* = CURLUSESSL_LAST ## Generated based on /usr/include/curl/curl.h:962:9 | |
else: | |
when CURLUSESSL_LAST is static: | |
const | |
CURLFTPSSL_LAST* = CURLUSESSL_LAST ## Generated based on /usr/include/curl/curl.h:962:9 | |
else: | |
let CURLFTPSSL_LAST* = CURLUSESSL_LAST ## Generated based on /usr/include/curl/curl.h:962:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLFTPSSL_LAST" & | |
" already exists, not redeclaring") | |
when not declared(curl_ftpssl): | |
when curl_usessl_2566914219 is typedesc: | |
type | |
curl_ftpssl* = curl_usessl_2566914219 ## Generated based on /usr/include/curl/curl.h:963:9 | |
else: | |
when curl_usessl_2566914219 is static: | |
const | |
curl_ftpssl* = curl_usessl_2566914219 ## Generated based on /usr/include/curl/curl.h:963:9 | |
else: | |
let curl_ftpssl* = curl_usessl_2566914219 ## Generated based on /usr/include/curl/curl.h:963:9 | |
else: | |
static : | |
hint("Declaration of " & "curl_ftpssl" & " already exists, not redeclaring") | |
when not declared(CURLHEADER_UNIFIED): | |
when 0 is static: | |
const | |
CURLHEADER_UNIFIED* = 0 ## Generated based on /usr/include/curl/curl.h:1003:9 | |
else: | |
let CURLHEADER_UNIFIED* = 0 ## Generated based on /usr/include/curl/curl.h:1003:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLHEADER_UNIFIED" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_LONG): | |
when 0 is static: | |
const | |
CURLOPTTYPE_LONG* = 0 ## Generated based on /usr/include/curl/curl.h:1079:9 | |
else: | |
let CURLOPTTYPE_LONG* = 0 ## Generated based on /usr/include/curl/curl.h:1079:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_LONG" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_OBJECTPOINT): | |
when 10000 is static: | |
const | |
CURLOPTTYPE_OBJECTPOINT* = 10000 ## Generated based on /usr/include/curl/curl.h:1080:9 | |
else: | |
let CURLOPTTYPE_OBJECTPOINT* = 10000 ## Generated based on /usr/include/curl/curl.h:1080:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_OBJECTPOINT" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_FUNCTIONPOINT): | |
when 20000 is static: | |
const | |
CURLOPTTYPE_FUNCTIONPOINT* = 20000 ## Generated based on /usr/include/curl/curl.h:1081:9 | |
else: | |
let CURLOPTTYPE_FUNCTIONPOINT* = 20000 ## Generated based on /usr/include/curl/curl.h:1081:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_FUNCTIONPOINT" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_OFF_T): | |
when 30000 is static: | |
const | |
CURLOPTTYPE_OFF_T* = 30000 ## Generated based on /usr/include/curl/curl.h:1082:9 | |
else: | |
let CURLOPTTYPE_OFF_T* = 30000 ## Generated based on /usr/include/curl/curl.h:1082:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_OFF_T" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_BLOB): | |
when 40000 is static: | |
const | |
CURLOPTTYPE_BLOB* = 40000 ## Generated based on /usr/include/curl/curl.h:1083:9 | |
else: | |
let CURLOPTTYPE_BLOB* = 40000 ## Generated based on /usr/include/curl/curl.h:1083:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_BLOB" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_STRINGPOINT): | |
when CURLOPTTYPE_OBJECTPOINT is typedesc: | |
type | |
CURLOPTTYPE_STRINGPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1095:9 | |
else: | |
when CURLOPTTYPE_OBJECTPOINT is static: | |
const | |
CURLOPTTYPE_STRINGPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1095:9 | |
else: | |
let CURLOPTTYPE_STRINGPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1095:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_STRINGPOINT" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_SLISTPOINT): | |
when CURLOPTTYPE_OBJECTPOINT is typedesc: | |
type | |
CURLOPTTYPE_SLISTPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1098:9 | |
else: | |
when CURLOPTTYPE_OBJECTPOINT is static: | |
const | |
CURLOPTTYPE_SLISTPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1098:9 | |
else: | |
let CURLOPTTYPE_SLISTPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1098:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_SLISTPOINT" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_CBPOINT): | |
when CURLOPTTYPE_OBJECTPOINT is typedesc: | |
type | |
CURLOPTTYPE_CBPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1101:9 | |
else: | |
when CURLOPTTYPE_OBJECTPOINT is static: | |
const | |
CURLOPTTYPE_CBPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1101:9 | |
else: | |
let CURLOPTTYPE_CBPOINT* = CURLOPTTYPE_OBJECTPOINT ## Generated based on /usr/include/curl/curl.h:1101:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_CBPOINT" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPTTYPE_VALUES): | |
when CURLOPTTYPE_LONG is typedesc: | |
type | |
CURLOPTTYPE_VALUES* = CURLOPTTYPE_LONG ## Generated based on /usr/include/curl/curl.h:1104:9 | |
else: | |
when CURLOPTTYPE_LONG is static: | |
const | |
CURLOPTTYPE_VALUES* = CURLOPTTYPE_LONG ## Generated based on /usr/include/curl/curl.h:1104:9 | |
else: | |
let CURLOPTTYPE_VALUES* = CURLOPTTYPE_LONG ## Generated based on /usr/include/curl/curl.h:1104:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPTTYPE_VALUES" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_PROGRESSDATA): | |
when CURLOPT_XFERINFODATA is typedesc: | |
type | |
CURLOPT_PROGRESSDATA* = CURLOPT_XFERINFODATA ## Generated based on /usr/include/curl/curl.h:1309:9 | |
else: | |
when CURLOPT_XFERINFODATA is static: | |
const | |
CURLOPT_PROGRESSDATA* = CURLOPT_XFERINFODATA ## Generated based on /usr/include/curl/curl.h:1309:9 | |
else: | |
let CURLOPT_PROGRESSDATA* = CURLOPT_XFERINFODATA ## Generated based on /usr/include/curl/curl.h:1309:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_PROGRESSDATA" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_POST301): | |
when CURLOPT_POSTREDIR is typedesc: | |
type | |
CURLOPT_POST301* = CURLOPT_POSTREDIR ## Generated based on /usr/include/curl/curl.h:2235:9 | |
else: | |
when CURLOPT_POSTREDIR is static: | |
const | |
CURLOPT_POST301* = CURLOPT_POSTREDIR ## Generated based on /usr/include/curl/curl.h:2235:9 | |
else: | |
let CURLOPT_POST301* = CURLOPT_POSTREDIR ## Generated based on /usr/include/curl/curl.h:2235:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_POST301" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_SSLKEYPASSWD): | |
when CURLOPT_KEYPASSWD is typedesc: | |
type | |
CURLOPT_SSLKEYPASSWD* = CURLOPT_KEYPASSWD ## Generated based on /usr/include/curl/curl.h:2240:9 | |
else: | |
when CURLOPT_KEYPASSWD is static: | |
const | |
CURLOPT_SSLKEYPASSWD* = CURLOPT_KEYPASSWD ## Generated based on /usr/include/curl/curl.h:2240:9 | |
else: | |
let CURLOPT_SSLKEYPASSWD* = CURLOPT_KEYPASSWD ## Generated based on /usr/include/curl/curl.h:2240:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_SSLKEYPASSWD" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_FTPAPPEND): | |
when CURLOPT_APPEND is typedesc: | |
type | |
CURLOPT_FTPAPPEND* = CURLOPT_APPEND ## Generated based on /usr/include/curl/curl.h:2241:9 | |
else: | |
when CURLOPT_APPEND is static: | |
const | |
CURLOPT_FTPAPPEND* = CURLOPT_APPEND ## Generated based on /usr/include/curl/curl.h:2241:9 | |
else: | |
let CURLOPT_FTPAPPEND* = CURLOPT_APPEND ## Generated based on /usr/include/curl/curl.h:2241:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_FTPAPPEND" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_FTPLISTONLY): | |
when CURLOPT_DIRLISTONLY is typedesc: | |
type | |
CURLOPT_FTPLISTONLY* = CURLOPT_DIRLISTONLY ## Generated based on /usr/include/curl/curl.h:2242:9 | |
else: | |
when CURLOPT_DIRLISTONLY is static: | |
const | |
CURLOPT_FTPLISTONLY* = CURLOPT_DIRLISTONLY ## Generated based on /usr/include/curl/curl.h:2242:9 | |
else: | |
let CURLOPT_FTPLISTONLY* = CURLOPT_DIRLISTONLY ## Generated based on /usr/include/curl/curl.h:2242:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_FTPLISTONLY" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_FTP_SSL): | |
when CURLOPT_USE_SSL is typedesc: | |
type | |
CURLOPT_FTP_SSL* = CURLOPT_USE_SSL ## Generated based on /usr/include/curl/curl.h:2243:9 | |
else: | |
when CURLOPT_USE_SSL is static: | |
const | |
CURLOPT_FTP_SSL* = CURLOPT_USE_SSL ## Generated based on /usr/include/curl/curl.h:2243:9 | |
else: | |
let CURLOPT_FTP_SSL* = CURLOPT_USE_SSL ## Generated based on /usr/include/curl/curl.h:2243:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_FTP_SSL" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_SSLCERTPASSWD): | |
when CURLOPT_KEYPASSWD is typedesc: | |
type | |
CURLOPT_SSLCERTPASSWD* = CURLOPT_KEYPASSWD ## Generated based on /usr/include/curl/curl.h:2247:9 | |
else: | |
when CURLOPT_KEYPASSWD is static: | |
const | |
CURLOPT_SSLCERTPASSWD* = CURLOPT_KEYPASSWD ## Generated based on /usr/include/curl/curl.h:2247:9 | |
else: | |
let CURLOPT_SSLCERTPASSWD* = CURLOPT_KEYPASSWD ## Generated based on /usr/include/curl/curl.h:2247:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_SSLCERTPASSWD" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_KRB4LEVEL): | |
when CURLOPT_KRBLEVEL is typedesc: | |
type | |
CURLOPT_KRB4LEVEL* = CURLOPT_KRBLEVEL ## Generated based on /usr/include/curl/curl.h:2248:9 | |
else: | |
when CURLOPT_KRBLEVEL is static: | |
const | |
CURLOPT_KRB4LEVEL* = CURLOPT_KRBLEVEL ## Generated based on /usr/include/curl/curl.h:2248:9 | |
else: | |
let CURLOPT_KRB4LEVEL* = CURLOPT_KRBLEVEL ## Generated based on /usr/include/curl/curl.h:2248:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_KRB4LEVEL" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_FTP_RESPONSE_TIMEOUT): | |
when CURLOPT_SERVER_RESPONSE_TIMEOUT is typedesc: | |
type | |
CURLOPT_FTP_RESPONSE_TIMEOUT* = CURLOPT_SERVER_RESPONSE_TIMEOUT ## Generated based on /usr/include/curl/curl.h:2251:9 | |
else: | |
when CURLOPT_SERVER_RESPONSE_TIMEOUT is static: | |
const | |
CURLOPT_FTP_RESPONSE_TIMEOUT* = CURLOPT_SERVER_RESPONSE_TIMEOUT ## Generated based on /usr/include/curl/curl.h:2251:9 | |
else: | |
let CURLOPT_FTP_RESPONSE_TIMEOUT* = CURLOPT_SERVER_RESPONSE_TIMEOUT ## Generated based on /usr/include/curl/curl.h:2251:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_FTP_RESPONSE_TIMEOUT" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_MAIL_RCPT_ALLLOWFAILS): | |
when CURLOPT_MAIL_RCPT_ALLOWFAILS is typedesc: | |
type | |
CURLOPT_MAIL_RCPT_ALLLOWFAILS* = CURLOPT_MAIL_RCPT_ALLOWFAILS ## Generated based on /usr/include/curl/curl.h:2254:9 | |
else: | |
when CURLOPT_MAIL_RCPT_ALLOWFAILS is static: | |
const | |
CURLOPT_MAIL_RCPT_ALLLOWFAILS* = CURLOPT_MAIL_RCPT_ALLOWFAILS ## Generated based on /usr/include/curl/curl.h:2254:9 | |
else: | |
let CURLOPT_MAIL_RCPT_ALLLOWFAILS* = CURLOPT_MAIL_RCPT_ALLOWFAILS ## Generated based on /usr/include/curl/curl.h:2254:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_MAIL_RCPT_ALLLOWFAILS" & | |
" already exists, not redeclaring") | |
when not declared(CURL_IPRESOLVE_WHATEVER): | |
when 0 is static: | |
const | |
CURL_IPRESOLVE_WHATEVER* = 0 ## Generated based on /usr/include/curl/curl.h:2265:9 | |
else: | |
let CURL_IPRESOLVE_WHATEVER* = 0 ## Generated based on /usr/include/curl/curl.h:2265:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_IPRESOLVE_WHATEVER" & | |
" already exists, not redeclaring") | |
when not declared(CURL_IPRESOLVE_V4): | |
when 1 is static: | |
const | |
CURL_IPRESOLVE_V4* = 1 ## Generated based on /usr/include/curl/curl.h:2267:9 | |
else: | |
let CURL_IPRESOLVE_V4* = 1 ## Generated based on /usr/include/curl/curl.h:2267:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_IPRESOLVE_V4" & | |
" already exists, not redeclaring") | |
when not declared(CURL_IPRESOLVE_V6): | |
when 2 is static: | |
const | |
CURL_IPRESOLVE_V6* = 2 ## Generated based on /usr/include/curl/curl.h:2268:9 | |
else: | |
let CURL_IPRESOLVE_V6* = 2 ## Generated based on /usr/include/curl/curl.h:2268:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_IPRESOLVE_V6" & | |
" already exists, not redeclaring") | |
when not declared(CURLOPT_RTSPHEADER): | |
when CURLOPT_HTTPHEADER is typedesc: | |
type | |
CURLOPT_RTSPHEADER* = CURLOPT_HTTPHEADER ## Generated based on /usr/include/curl/curl.h:2271:9 | |
else: | |
when CURLOPT_HTTPHEADER is static: | |
const | |
CURLOPT_RTSPHEADER* = CURLOPT_HTTPHEADER ## Generated based on /usr/include/curl/curl.h:2271:9 | |
else: | |
let CURLOPT_RTSPHEADER* = CURLOPT_HTTPHEADER ## Generated based on /usr/include/curl/curl.h:2271:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLOPT_RTSPHEADER" & | |
" already exists, not redeclaring") | |
when not declared(CURL_HTTP_VERSION_2): | |
when CURL_HTTP_VERSION_2_0 is typedesc: | |
type | |
CURL_HTTP_VERSION_2* = CURL_HTTP_VERSION_2_0 ## Generated based on /usr/include/curl/curl.h:2297:9 | |
else: | |
when CURL_HTTP_VERSION_2_0 is static: | |
const | |
CURL_HTTP_VERSION_2* = CURL_HTTP_VERSION_2_0 ## Generated based on /usr/include/curl/curl.h:2297:9 | |
else: | |
let CURL_HTTP_VERSION_2* = CURL_HTTP_VERSION_2_0 ## Generated based on /usr/include/curl/curl.h:2297:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_HTTP_VERSION_2" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_DEFAULT): | |
when 0 is static: | |
const | |
CURL_SSLVERSION_DEFAULT* = 0 ## Generated based on /usr/include/curl/curl.h:2330:9 | |
else: | |
let CURL_SSLVERSION_DEFAULT* = 0 ## Generated based on /usr/include/curl/curl.h:2330:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_DEFAULT" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_TLSv1): | |
when 1 is static: | |
const | |
CURL_SSLVERSION_TLSv1* = 1 ## Generated based on /usr/include/curl/curl.h:2331:9 | |
else: | |
let CURL_SSLVERSION_TLSv1* = 1 ## Generated based on /usr/include/curl/curl.h:2331:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_TLSv1" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_SSLv2): | |
when 2 is static: | |
const | |
CURL_SSLVERSION_SSLv2* = 2 ## Generated based on /usr/include/curl/curl.h:2332:9 | |
else: | |
let CURL_SSLVERSION_SSLv2* = 2 ## Generated based on /usr/include/curl/curl.h:2332:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_SSLv2" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_SSLv3): | |
when 3 is static: | |
const | |
CURL_SSLVERSION_SSLv3* = 3 ## Generated based on /usr/include/curl/curl.h:2333:9 | |
else: | |
let CURL_SSLVERSION_SSLv3* = 3 ## Generated based on /usr/include/curl/curl.h:2333:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_SSLv3" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_TLSv1_0): | |
when 4 is static: | |
const | |
CURL_SSLVERSION_TLSv1_0* = 4 ## Generated based on /usr/include/curl/curl.h:2334:9 | |
else: | |
let CURL_SSLVERSION_TLSv1_0* = 4 ## Generated based on /usr/include/curl/curl.h:2334:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_TLSv1_0" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_TLSv1_1): | |
when 5 is static: | |
const | |
CURL_SSLVERSION_TLSv1_1* = 5 ## Generated based on /usr/include/curl/curl.h:2335:9 | |
else: | |
let CURL_SSLVERSION_TLSv1_1* = 5 ## Generated based on /usr/include/curl/curl.h:2335:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_TLSv1_1" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_TLSv1_2): | |
when 6 is static: | |
const | |
CURL_SSLVERSION_TLSv1_2* = 6 ## Generated based on /usr/include/curl/curl.h:2336:9 | |
else: | |
let CURL_SSLVERSION_TLSv1_2* = 6 ## Generated based on /usr/include/curl/curl.h:2336:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_TLSv1_2" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_TLSv1_3): | |
when 7 is static: | |
const | |
CURL_SSLVERSION_TLSv1_3* = 7 ## Generated based on /usr/include/curl/curl.h:2337:9 | |
else: | |
let CURL_SSLVERSION_TLSv1_3* = 7 ## Generated based on /usr/include/curl/curl.h:2337:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_TLSv1_3" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_LAST): | |
when 8 is static: | |
const | |
CURL_SSLVERSION_LAST* = 8 ## Generated based on /usr/include/curl/curl.h:2339:9 | |
else: | |
let CURL_SSLVERSION_LAST* = 8 ## Generated based on /usr/include/curl/curl.h:2339:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_LAST" & | |
" already exists, not redeclaring") | |
when not declared(CURL_SSLVERSION_MAX_NONE): | |
when 0 is static: | |
const | |
CURL_SSLVERSION_MAX_NONE* = 0 ## Generated based on /usr/include/curl/curl.h:2341:9 | |
else: | |
let CURL_SSLVERSION_MAX_NONE* = 0 ## Generated based on /usr/include/curl/curl.h:2341:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_SSLVERSION_MAX_NONE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_REDIR_GET_ALL): | |
when 0 is static: | |
const | |
CURL_REDIR_GET_ALL* = 0 ## Generated based on /usr/include/curl/curl.h:2362:9 | |
else: | |
let CURL_REDIR_GET_ALL* = 0 ## Generated based on /usr/include/curl/curl.h:2362:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_REDIR_GET_ALL" & | |
" already exists, not redeclaring") | |
when not declared(CURL_REDIR_POST_301): | |
when 1 is static: | |
const | |
CURL_REDIR_POST_301* = 1 ## Generated based on /usr/include/curl/curl.h:2363:9 | |
else: | |
let CURL_REDIR_POST_301* = 1 ## Generated based on /usr/include/curl/curl.h:2363:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_REDIR_POST_301" & | |
" already exists, not redeclaring") | |
when not declared(CURL_REDIR_POST_302): | |
when 2 is static: | |
const | |
CURL_REDIR_POST_302* = 2 ## Generated based on /usr/include/curl/curl.h:2364:9 | |
else: | |
let CURL_REDIR_POST_302* = 2 ## Generated based on /usr/include/curl/curl.h:2364:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_REDIR_POST_302" & | |
" already exists, not redeclaring") | |
when not declared(CURL_REDIR_POST_303): | |
when 4 is static: | |
const | |
CURL_REDIR_POST_303* = 4 ## Generated based on /usr/include/curl/curl.h:2365:9 | |
else: | |
let CURL_REDIR_POST_303* = 4 ## Generated based on /usr/include/curl/curl.h:2365:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_REDIR_POST_303" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_STRING): | |
when 1048576 is static: | |
const | |
CURLINFO_STRING* = 1048576 ## Generated based on /usr/include/curl/curl.h:2853:9 | |
else: | |
let CURLINFO_STRING* = 1048576 ## Generated based on /usr/include/curl/curl.h:2853:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_STRING" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_LONG): | |
when 2097152 is static: | |
const | |
CURLINFO_LONG* = 2097152 ## Generated based on /usr/include/curl/curl.h:2854:9 | |
else: | |
let CURLINFO_LONG* = 2097152 ## Generated based on /usr/include/curl/curl.h:2854:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_LONG" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_DOUBLE): | |
when 3145728 is static: | |
const | |
CURLINFO_DOUBLE* = 3145728 ## Generated based on /usr/include/curl/curl.h:2855:9 | |
else: | |
let CURLINFO_DOUBLE* = 3145728 ## Generated based on /usr/include/curl/curl.h:2855:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_DOUBLE" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_SLIST): | |
when 4194304 is static: | |
const | |
CURLINFO_SLIST* = 4194304 ## Generated based on /usr/include/curl/curl.h:2856:9 | |
else: | |
let CURLINFO_SLIST* = 4194304 ## Generated based on /usr/include/curl/curl.h:2856:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_SLIST" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_PTR): | |
when 4194304 is static: | |
const | |
CURLINFO_PTR* = 4194304 ## Generated based on /usr/include/curl/curl.h:2857:9 | |
else: | |
let CURLINFO_PTR* = 4194304 ## Generated based on /usr/include/curl/curl.h:2857:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_PTR" & " already exists, not redeclaring") | |
when not declared(CURLINFO_SOCKET): | |
when 5242880 is static: | |
const | |
CURLINFO_SOCKET* = 5242880 ## Generated based on /usr/include/curl/curl.h:2858:9 | |
else: | |
let CURLINFO_SOCKET* = 5242880 ## Generated based on /usr/include/curl/curl.h:2858:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_SOCKET" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_OFF_T): | |
when 6291456 is static: | |
const | |
CURLINFO_OFF_T* = 6291456 ## Generated based on /usr/include/curl/curl.h:2859:9 | |
else: | |
let CURLINFO_OFF_T* = 6291456 ## Generated based on /usr/include/curl/curl.h:2859:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_OFF_T" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_MASK): | |
when 1048575 is static: | |
const | |
CURLINFO_MASK* = 1048575 ## Generated based on /usr/include/curl/curl.h:2860:9 | |
else: | |
let CURLINFO_MASK* = 1048575 ## Generated based on /usr/include/curl/curl.h:2860:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_MASK" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_TYPEMASK): | |
when 15728640 is static: | |
const | |
CURLINFO_TYPEMASK* = 15728640 ## Generated based on /usr/include/curl/curl.h:2861:9 | |
else: | |
let CURLINFO_TYPEMASK* = 15728640 ## Generated based on /usr/include/curl/curl.h:2861:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_TYPEMASK" & | |
" already exists, not redeclaring") | |
when not declared(CURLINFO_HTTP_CODE): | |
when CURLINFO_RESPONSE_CODE is typedesc: | |
type | |
CURLINFO_HTTP_CODE* = CURLINFO_RESPONSE_CODE ## Generated based on /usr/include/curl/curl.h:2961:9 | |
else: | |
when CURLINFO_RESPONSE_CODE is static: | |
const | |
CURLINFO_HTTP_CODE* = CURLINFO_RESPONSE_CODE ## Generated based on /usr/include/curl/curl.h:2961:9 | |
else: | |
let CURLINFO_HTTP_CODE* = CURLINFO_RESPONSE_CODE ## Generated based on /usr/include/curl/curl.h:2961:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLINFO_HTTP_CODE" & | |
" already exists, not redeclaring") | |
when not declared(CURL_GLOBAL_NOTHING): | |
when 0 is static: | |
const | |
CURL_GLOBAL_NOTHING* = 0 ## Generated based on /usr/include/curl/curl.h:2978:9 | |
else: | |
let CURL_GLOBAL_NOTHING* = 0 ## Generated based on /usr/include/curl/curl.h:2978:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_GLOBAL_NOTHING" & | |
" already exists, not redeclaring") | |
when not declared(CURL_GLOBAL_DEFAULT): | |
when CURL_GLOBAL_ALL is typedesc: | |
type | |
CURL_GLOBAL_DEFAULT* = CURL_GLOBAL_ALL ## Generated based on /usr/include/curl/curl.h:2979:9 | |
else: | |
when CURL_GLOBAL_ALL is static: | |
const | |
CURL_GLOBAL_DEFAULT* = CURL_GLOBAL_ALL ## Generated based on /usr/include/curl/curl.h:2979:9 | |
else: | |
let CURL_GLOBAL_DEFAULT* = CURL_GLOBAL_ALL ## Generated based on /usr/include/curl/curl.h:2979:9 | |
else: | |
static : | |
hint("Declaration of " & "CURL_GLOBAL_DEFAULT" & | |
" already exists, not redeclaring") | |
when not declared(CURLVERSION_NOW): | |
when CURLVERSION_TWELFTH is typedesc: | |
type | |
CURLVERSION_NOW* = CURLVERSION_TWELFTH ## Generated based on /usr/include/curl/curl.h:3072:9 | |
else: | |
when CURLVERSION_TWELFTH is static: | |
const | |
CURLVERSION_NOW* = CURLVERSION_TWELFTH ## Generated based on /usr/include/curl/curl.h:3072:9 | |
else: | |
let CURLVERSION_NOW* = CURLVERSION_TWELFTH ## Generated based on /usr/include/curl/curl.h:3072:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLVERSION_NOW" & | |
" already exists, not redeclaring") | |
when not declared(CURLPAUSE_RECV_CONT): | |
when 0 is static: | |
const | |
CURLPAUSE_RECV_CONT* = 0 ## Generated based on /usr/include/curl/curl.h:3219:9 | |
else: | |
let CURLPAUSE_RECV_CONT* = 0 ## Generated based on /usr/include/curl/curl.h:3219:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLPAUSE_RECV_CONT" & | |
" already exists, not redeclaring") | |
when not declared(CURLPAUSE_SEND_CONT): | |
when 0 is static: | |
const | |
CURLPAUSE_SEND_CONT* = 0 ## Generated based on /usr/include/curl/curl.h:3222:9 | |
else: | |
let CURLPAUSE_SEND_CONT* = 0 ## Generated based on /usr/include/curl/curl.h:3222:9 | |
else: | |
static : | |
hint("Declaration of " & "CURLPAUSE_SEND_CONT" & | |
" already exists, not redeclaring") | |
when not declared(curl_strequal): | |
proc curl_strequal*(s1: cstring; s2: cstring): cint {.cdecl, | |
importc: "curl_strequal".} | |
else: | |
static : | |
hint("Declaration of " & "curl_strequal" & | |
" already exists, not redeclaring") | |
when not declared(curl_strnequal): | |
proc curl_strnequal*(s1: cstring; s2: cstring; n: csize_t): cint {.cdecl, | |
importc: "curl_strnequal".} | |
else: | |
static : | |
hint("Declaration of " & "curl_strnequal" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_init): | |
proc curl_mime_init*(easy: pointer): ptr curl_mime_2566914377 {.cdecl, | |
importc: "curl_mime_init".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_init" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_free): | |
proc curl_mime_free*(mime: ptr curl_mime_2566914377): void {.cdecl, | |
importc: "curl_mime_free".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_free" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_addpart): | |
proc curl_mime_addpart*(mime: ptr curl_mime_2566914377): ptr curl_mimepart_2566914379 {. | |
cdecl, importc: "curl_mime_addpart".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_addpart" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_name): | |
proc curl_mime_name*(part: ptr curl_mimepart_2566914379; name: cstring): CURLcode_2566914309 {. | |
cdecl, importc: "curl_mime_name".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_name" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_filename): | |
proc curl_mime_filename*(part: ptr curl_mimepart_2566914379; filename: cstring): CURLcode_2566914309 {. | |
cdecl, importc: "curl_mime_filename".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_filename" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_type): | |
proc curl_mime_type*(part: ptr curl_mimepart_2566914379; mimetype: cstring): CURLcode_2566914309 {. | |
cdecl, importc: "curl_mime_type".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_type" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_encoder): | |
proc curl_mime_encoder*(part: ptr curl_mimepart_2566914379; encoding: cstring): CURLcode_2566914309 {. | |
cdecl, importc: "curl_mime_encoder".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_encoder" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_data): | |
proc curl_mime_data*(part: ptr curl_mimepart_2566914379; data: cstring; | |
datasize: csize_t): CURLcode_2566914309 {.cdecl, | |
importc: "curl_mime_data".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_data" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_filedata): | |
proc curl_mime_filedata*(part: ptr curl_mimepart_2566914379; filename: cstring): CURLcode_2566914309 {. | |
cdecl, importc: "curl_mime_filedata".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_filedata" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_data_cb): | |
proc curl_mime_data_cb*(part: ptr curl_mimepart_2566914379; | |
datasize: curl_off_t_2566914235; | |
readfunc: curl_read_callback_2566914261; | |
seekfunc: curl_seek_callback_2566914259; | |
freefunc: curl_free_callback_2566914291; arg: pointer): CURLcode_2566914309 {. | |
cdecl, importc: "curl_mime_data_cb".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_data_cb" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_subparts): | |
proc curl_mime_subparts*(part: ptr curl_mimepart_2566914379; | |
subparts: ptr curl_mime_2566914377): CURLcode_2566914309 {. | |
cdecl, importc: "curl_mime_subparts".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_subparts" & | |
" already exists, not redeclaring") | |
when not declared(curl_mime_headers): | |
proc curl_mime_headers*(part: ptr curl_mimepart_2566914379; | |
headers: ptr struct_curl_slist_2566914233; | |
take_ownership: cint): CURLcode_2566914309 {.cdecl, | |
importc: "curl_mime_headers".} | |
else: | |
static : | |
hint("Declaration of " & "curl_mime_headers" & | |
" already exists, not redeclaring") | |
when not declared(curl_formadd): | |
proc curl_formadd*(httppost: ptr ptr struct_curl_httppost_2566914231; | |
last_post: ptr ptr struct_curl_httppost_2566914231): CURLFORMcode_2566914389 {. | |
cdecl, varargs, importc: "curl_formadd".} | |
else: | |
static : | |
hint("Declaration of " & "curl_formadd" & " already exists, not redeclaring") | |
when not declared(curl_formget): | |
proc curl_formget*(form: ptr struct_curl_httppost_2566914231; arg: pointer; | |
append: curl_formget_callback_2566914391): cint {.cdecl, | |
importc: "curl_formget".} | |
else: | |
static : | |
hint("Declaration of " & "curl_formget" & " already exists, not redeclaring") | |
when not declared(curl_formfree): | |
proc curl_formfree*(form: ptr struct_curl_httppost_2566914231): void {.cdecl, | |
importc: "curl_formfree".} | |
else: | |
static : | |
hint("Declaration of " & "curl_formfree" & | |
" already exists, not redeclaring") | |
when not declared(curl_getenv): | |
proc curl_getenv*(variable: cstring): cstring {.cdecl, importc: "curl_getenv".} | |
else: | |
static : | |
hint("Declaration of " & "curl_getenv" & " already exists, not redeclaring") | |
when not declared(curl_version): | |
proc curl_version*(): cstring {.cdecl, importc: "curl_version".} | |
else: | |
static : | |
hint("Declaration of " & "curl_version" & " already exists, not redeclaring") | |
when not declared(curl_easy_escape): | |
proc curl_easy_escape*(handle: pointer; string_arg: cstring; length: cint): cstring {. | |
cdecl, importc: "curl_easy_escape".} | |
else: | |
static : | |
hint("Declaration of " & "curl_easy_escape" & | |
" already exists, not redeclaring") | |
when not declared(curl_escape): | |
proc curl_escape*(string_arg: cstring; length: cint): cstring {.cdecl, | |
importc: "curl_escape".} | |
else: | |
static : | |
hint("Declaration of " & "curl_escape" & " already exists, not redeclaring") | |
when not declared(curl_easy_unescape): | |
proc curl_easy_unescape*(handle: pointer; string_arg: cstring; length: cint; | |
outlength: ptr cint): cstring {.cdecl, | |
importc: "curl_easy_unescape".} | |
else: | |
static : | |
hint("Declaration of " & "curl_easy_unescape" & | |
" already exists, not redeclaring") | |
when not declared(curl_unescape): | |
proc curl_unescape*(string_arg: cstring; length: cint): cstring {.cdecl, | |
importc: "curl_unescape".} | |
else: | |
static : | |
hint("Declaration of " & "curl_unescape" & | |
" already exists, not redeclaring") | |
when not declared(curl_free): | |
proc curl_free*(p: pointer): void {.cdecl, importc: "curl_free".} | |
else: | |
static : | |
hint("Declaration of " & "curl_free" & " already exists, not redeclaring") | |
when not declared(curl_global_init): | |
proc curl_global_init*(flags: clong): CURLcode_2566914309 {.cdecl, | |
importc: "curl_global_init".} | |
else: | |
static : | |
hint("Declaration of " & "curl_global_init" & | |
" already exists, not redeclaring") | |
when not declared(curl_global_init_mem): | |
proc curl_global_init_mem*(flags: clong; m: curl_malloc_callback_2566914289; | |
f: curl_free_callback_2566914291; | |
r: curl_realloc_callback_2566914293; | |
s: curl_strdup_callback_2566914295; | |
c: curl_calloc_callback_2566914297): CURLcode_2566914309 {. | |
cdecl, importc: "curl_global_init_mem".} | |
else: | |
static : | |
hint("Declaration of " & "curl_global_init_mem" & | |
" already exists, not redeclaring") | |
when not declared(curl_global_cleanup): | |
proc curl_global_cleanup*(): void {.cdecl, importc: "curl_global_cleanup".} | |
else: | |
static : | |
hint("Declaration of " & "curl_global_cleanup" & | |
" already exists, not redeclaring") | |
when not declared(curl_global_trace): | |
proc curl_global_trace*(config: cstring): CURLcode_2566914309 {.cdecl, | |
importc: "curl_global_trace".} | |
else: | |
static : | |
hint("Declaration of " & "curl_global_trace" & | |
" already exists, not redeclaring") | |
when not declared(curl_global_sslset): | |
proc curl_global_sslset*(id: curl_sslbackend_2566914229; name: cstring; | |
avail: ptr ptr ptr curl_ssl_backend_typedef_2566914395): CURLsslset_2566914399 {. | |
cdecl, importc: "curl_global_sslset".} | |
else: | |
static : | |
hint("Declaration of " & "curl_global_sslset" & | |
" already exists, not redeclaring") | |
when not declared(curl_slist_append): | |
proc curl_slist_append*(list: ptr struct_curl_slist_2566914233; data: cstring): ptr struct_curl_slist_2566914233 {. | |
cdecl, importc: "curl_slist_append".} | |
else: | |
static : | |
hint("Declaration of " & "curl_slist_append" & | |
" already exists, not redeclaring") | |
when not declared(curl_slist_free_all): | |
proc curl_slist_free_all*(list: ptr struct_curl_slist_2566914233): void {. | |
cdecl, importc: "curl_slist_free_all".} | |
else: | |
static : | |
hint("Declaration of " & "curl_slist_free_all" & | |
" already exists, not redeclaring") | |
when not declared(curl_getdate): | |
proc curl_getdate*(p: cstring; unused: ptr time_t_2566914251): time_t_2566914251 {. | |
cdecl, importc: "curl_getdate".} | |
else: | |
static : | |
hint("Declaration of " & "curl_getdate" & " already exists, not redeclaring") | |
when not declared(curl_share_init): | |
proc curl_share_init*(): pointer {.cdecl, importc: "curl_share_init".} | |
else: | |
static : | |
hint("Declaration of " & "curl_share_init" & | |
" already exists, not redeclaring") | |
when not declared(curl_share_setopt): | |
proc curl_share_setopt*(share: pointer; option: CURLSHoption_2566914431): CURLSHcode_2566914427 {. | |
cdecl, varargs, importc: "curl_share_setopt".} | |
else: | |
static : | |
hint("Declaration of " & "curl_share_setopt" & | |
" already exists, not redeclaring") | |
when not declared(curl_share_cleanup): | |
proc curl_share_cleanup*(share: pointer): CURLSHcode_2566914427 {.cdecl, | |
importc: "curl_share_cleanup".} | |
else: | |
static : | |
hint("Declaration of " & "curl_share_cleanup" & | |
" already exists, not redeclaring") | |
when not declared(curl_version_info): | |
proc curl_version_info*(a0: CURLversion_2566914435): ptr curl_version_info_data_2566914439 {. | |
cdecl, importc: "curl_version_info".} | |
else: | |
static : | |
hint("Declaration of " & "curl_version_info" & | |
" already exists, not redeclaring") | |
when not declared(curl_easy_strerror): | |
proc curl_easy_strerror*(a0: CURLcode_2566914309): cstring {.cdecl, | |
importc: "curl_easy_strerror".} | |
else: | |
static : | |
hint("Declaration of " & "curl_easy_strerror" & | |
" already exists, not redeclaring") | |
when not declared(curl_share_strerror): | |
proc curl_share_strerror*(a0: CURLSHcode_2566914427): cstring {.cdecl, | |
importc: "curl_share_strerror".} | |
else: | |
static : | |
hint("Declaration of " & "curl_share_strerror" & | |
" already exists, not redeclaring") | |
when not declared(curl_easy_pause): | |
proc curl_easy_pause*(handle: pointer; bitmask: cint): CURLcode_2566914309 {. | |
cdecl, importc: "curl_easy_pause".} | |
else: | |
static : | |
hint("Declaration of " & "curl_easy_pause" & | |
" already exists, not redeclaring") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment