1/* -*- mode: C; c-file-style: "gnu" -*- */
2/* xdgmimealias.h: Private file. Datastructure for storing the aliases.
3 *
4 * More info can be found at http://www.freedesktop.org/standards/
5 *
6 * Copyright (C) 2004 Red Hat, Inc.
7 * Copyright (C) 200 Matthias Clasen <mclasen@redhat.com>
8 *
9 * Licensed under the Academic Free License version 2.0
10 * Or under the following terms:
11 *
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
16 *
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef __XDG_MIME_ALIAS_H__
27#define __XDG_MIME_ALIAS_H__
28
29#include "xdgmime.h"
30
31typedef struct XdgAliasList XdgAliasList;
32
33#ifdef XDG_PREFIX
34#define _xdg_mime_alias_read_from_file XDG_RESERVED_ENTRY(alias_read_from_file)
35#define _xdg_mime_alias_list_new XDG_RESERVED_ENTRY(alias_list_new)
36#define _xdg_mime_alias_list_free XDG_RESERVED_ENTRY(alias_list_free)
37#define _xdg_mime_alias_list_lookup XDG_RESERVED_ENTRY(alias_list_lookup)
38#define _xdg_mime_alias_list_dump XDG_RESERVED_ENTRY(alias_list_dump)
39#endif
40
41void _xdg_mime_alias_read_from_file (XdgAliasList *list,
42 const char *file_name);
43XdgAliasList *_xdg_mime_alias_list_new (void);
44void _xdg_mime_alias_list_free (XdgAliasList *list);
45const char *_xdg_mime_alias_list_lookup (XdgAliasList *list,
46 const char *alias);
47#ifdef NOT_USED_IN_GIO
48void _xdg_mime_alias_list_dump (XdgAliasList *list);
49#endif
50#endif /* __XDG_MIME_ALIAS_H__ */
51

source code of gtk/subprojects/glib/gio/xdgmime/xdgmimealias.h