~adam-stokes/ubuntu/quantal/gnome-vfs/lp977940-multiarch

« back to all changes in this revision

Viewing changes to libgnomevfs/xdgmimeglob.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-08-05 10:31:15 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080805103115-5vkex0yk6qq619x5
Tags: 1:2.23.0-0ubuntu1
* New upstream version:
  - Sync xdgmime with GIO
* debian/patches/90_from_svn_no_range_for_youtube.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
  
43
43
#ifdef XDG_PREFIX
44
 
#define _xdg_mime_glob_read_from_file         XDG_ENTRY(glob_read_from_file)
45
 
#define _xdg_glob_hash_new                    XDG_ENTRY(hash_new)
46
 
#define _xdg_glob_hash_free                   XDG_ENTRY(hash_free)
47
 
#define _xdg_glob_hash_lookup_file_name       XDG_ENTRY(hash_lookup_file_name)
48
 
#define _xdg_glob_hash_append_glob            XDG_ENTRY(hash_append_glob)
49
 
#define _xdg_glob_determine_type              XDG_ENTRY(determine_type)
50
 
#define _xdg_glob_hash_dump                   XDG_ENTRY(hash_dump)
 
44
#define _xdg_mime_glob_read_from_file         XDG_RESERVED_ENTRY(glob_read_from_file)
 
45
#define _xdg_glob_hash_new                    XDG_RESERVED_ENTRY(hash_new)
 
46
#define _xdg_glob_hash_free                   XDG_RESERVED_ENTRY(hash_free)
 
47
#define _xdg_glob_hash_lookup_file_name       XDG_RESERVED_ENTRY(hash_lookup_file_name)
 
48
#define _xdg_glob_hash_append_glob            XDG_RESERVED_ENTRY(hash_append_glob)
 
49
#define _xdg_glob_determine_type              XDG_RESERVED_ENTRY(determine_type)
 
50
#define _xdg_glob_hash_dump                   XDG_RESERVED_ENTRY(hash_dump)
51
51
#endif
52
52
 
53
53
void         _xdg_mime_glob_read_from_file   (XdgGlobHash *glob_hash,
60
60
                                              int          n_mime_types);
61
61
void         _xdg_glob_hash_append_glob      (XdgGlobHash *glob_hash,
62
62
                                              const char  *glob,
63
 
                                              const char  *mime_type);
 
63
                                              const char  *mime_type,
 
64
                                              int          weight);
64
65
XdgGlobType  _xdg_glob_determine_type        (const char  *glob);
65
66
void         _xdg_glob_hash_dump             (XdgGlobHash *glob_hash);
66
67