From fdea23960ae9ea99fa28db49c4da5791a8affca7 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sun, 5 Feb 2012 22:18:15 +0100 Subject: download and cache version information from itunes.com --- src/download.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/download.h (limited to 'src/download.h') diff --git a/src/download.h b/src/download.h new file mode 100644 index 0000000..4900b18 --- /dev/null +++ b/src/download.h @@ -0,0 +1,24 @@ +/* + * download.h + * file download helper functions (header file) + * + * Copyright (c) 2012 Nikias Bassen. All Rights Reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ +#include + +int download_to_buffer(const char* url, char** buf, uint32_t* length); +int download_to_file(const char* url, const char* filename); -- cgit v1.1-32-gdbae