System.Curl.CURLMcode

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

CURLMcode = (
CURLM_CALL_MULTI_PERFORM = -1, { please call curl_multi_perform() or curl_multi_socket*() soon }
CURLM_OK,
CURLM_BAD_HANDLE,      { the passed-in handle is not a valid CURLM handle }
CURLM_BAD_EASY_HANDLE, { an easy handle was not good/valid }
CURLM_OUT_OF_MEMORY,   { if you ever get this, you're in deep sh*t }
CURLM_INTERNAL_ERROR,  { this is a libcurl bug }
CURLM_BAD_SOCKET,      { the passed in socket argument did not match }
CURLM_UNKNOWN_OPTION,  { curl_multi_setopt() with unsupported option }
CURLM_ADDED_ALREADY,   { an easy handle already added to a multi handle was attempted to get added - again }
CURLM_LAST
);

C++

enum DECLSPEC_DENUM CURLMcode: signed char { CURLM_CALL_MULTI_PERFORM = -1, CURLM_OK, CURLM_BAD_HANDLE, CURLM_BAD_EASY_HANDLE, CURLM_OUT_OF_MEMORY, CURLM_INTERNAL_ERROR, CURLM_BAD_SOCKET, CURLM_UNKNOWN_OPTION, CURLM_ADDED_ALREADY, CURLM_LAST };

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
enum public
System.Curl.pas
System.Curl.hpp
System.Curl System.Curl

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.