~ubuntu-branches/ubuntu/maverick/newsbeuter/maverick

« back to all changes in this revision

Viewing changes to xmlrss/mrss_internal.h

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2009-04-21 14:06:18 UTC
  • mfrom: (4.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090421140618-osnjk19bgkebyg9h
Tags: 2.0-1
* New upstream release.
  - Remove dependeny on mrss and nxml and add libxml2, newsbeuter
    now comes with its own parser.
  - Remove debian/patches and quilt dependency.
* Bump to policy 3.8.1, no changes needed.
* debian/copyright: adjust years.
* Remove dh_clean -k call as it is deprecated -> dh_prep.
* Change newsbeuter homepage, it now has an official one.
* Fix watch file url, new upstream code location.
* Add bookmark-scuttle.sh to installed contrib files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* mRss - Copyright (C) 2005-2007 bakunin - Andrea Marchesini 
2
 
 *                                    <bakunin@autistici.org>
3
 
 *
4
 
 * This library is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU Lesser General Public
6
 
 * License as published by the Free Software Foundation; either
7
 
 * version 2.1 of the License, or (at your option) any later version.
8
 
 * 
9
 
 * This library is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 * Lesser General Public License for more details.
13
 
 * 
14
 
 * You should have received a copy of the GNU Lesser General Public
15
 
 * License along with this library; if not, write to the Free Software
16
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
 
 */
18
 
 
19
 
#ifndef __M_RSS_INTERNAL_H__
20
 
#define __M_RSS_INTERNAL_H__
21
 
 
22
 
#include <curl/curl.h>
23
 
#include "_nxml.h"
24
 
#include <sys/types.h>
25
 
#include <sys/stat.h>
26
 
#include <string.h>
27
 
#include <errno.h>
28
 
 
29
 
#ifdef USE_LOCALE
30
 
#  ifdef USE_X_LOCALE
31
 
#    include <xlocale.h>
32
 
#  endif
33
 
 
34
 
#  ifdef USE_GENERIC_LOCALE
35
 
#    include <locale.h>
36
 
#  endif
37
 
#endif
38
 
 
39
 
char *  __mrss_download_file    (nxml_t *, const char *, size_t *, mrss_error_t *, CURLcode *code);
40
 
 
41
 
#endif
42
 
 
43
 
/* EOF */
44