~ubuntu-branches/debian/jessie/glib2.0/jessie

« back to all changes in this revision

Viewing changes to gio/xdgmime/xdgmimeglob.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-02-15 13:00:43 UTC
  • mto: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 70.
  • Revision ID: james.westby@ubuntu.com-20090215130043-6snh45flhit8oalb
Tags: upstream-2.18.4
ImportĀ upstreamĀ versionĀ 2.18.4

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