System.Curl.curl_fileinfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

curl_fileinfo = record

C++

struct DECLSPEC_DRECORD curl_fileinfo
{
public:
    char * filename;
    TCurlFileType filetype;
#ifndef _WIN64
    int time;
#else /* _WIN64 */
    __int64 time;
#endif /* _WIN64 */
    unsigned perm;
    int uid;
    int gid;
    curl_off_t size;
    System::LongInt hardlinks;
    curl_fileinfo_strings strings;
    unsigned flags;
    char * b_data;
#ifndef _WIN64
    unsigned b_size;
    unsigned b_used;
#else /* _WIN64 */
    unsigned __int64 b_size;
    unsigned __int64 b_used;
#endif /* _WIN64 */
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Curl.pas
System.Curl.hpp
System.Curl System.Curl

Description

Embarcadero Technologies does not currently have any additional information.