00001 /* mRss - Copyright (C) 2005 bakunin - Andrea Marchesini 00002 * <bakunin@autistici.org> 00003 * 00004 * This source code is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Public License as published 00006 * by the Free Software Foundation; either version 2 of the License, 00007 * or (at your option) any later version. 00008 * 00009 * This source code is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00012 * Please refer to the GNU Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Public License along with 00015 * this source code; if not, write to: 00016 * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00017 */ 00018 00019 #ifndef __M_RSS_INTERNAL_H__ 00020 #define __M_RSS_INTERNAL_H__ 00021 00022 #include <curl/curl.h> 00023 #include <libxml/parser.h> 00024 #include <sys/types.h> 00025 #include <sys/stat.h> 00026 #include <string.h> 00027 #include <errno.h> 00028 00029 typedef struct __mrss_download_t__ __mrss_download_t; 00030 00035 struct __mrss_download_t__ 00036 { 00037 char *mm; 00038 size_t size; 00039 }; 00040 00041 __mrss_download_t * 00042 __mrss_download_file (char *); 00043 00044 #endif 00045 00046 /* EOF */ 00047