Translated using Weblate (Chinese (Simplified))
[cygwin-setup.git] / geturl.h
blobf4e963ef7f7dfad046b1200311f90011489de0ad
1 /*
2 * Copyright (c) 2000, 2001, Red Hat, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
12 * Written by DJ Delorie <dj@cygnus.com>
16 #ifndef SETUP_GETURL_H
17 #define SETUP_GETURL_H
19 /* Download files from the Internet. These pop up a progress dialog;
20 don't forget to dismiss it when you're done downloading for a while */
22 #include <string>
24 extern long long int total_download_bytes;
25 extern long long int total_download_bytes_sofar;
27 class io_stream;
29 io_stream *get_url_to_membuf (const std::string &_url, HWND owner);
30 std::string get_url_to_string (const std::string &_url, HWND owner);
31 int get_url_to_file (const std::string &_url, const std::string &_filename,
32 int expected_size, HWND owner);
34 #endif /* SETUP_GETURL_H */