mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 01:16:17 +01:00
b097adf18a
(Modulo the changes in https://gitlab.freedesktop.org/xdg/xdgmime/-/merge_requests/10 which are still under discussion. Plus the proposed warning fixes from https://gitlab.freedesktop.org/xdg/xdgmime/-/merge_requests/33.) Signed-off-by: Philip Withnall <pwithnall@gnome.org> Fixes: #3191
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
/* -*- mode: C; c-file-style: "gnu" -*- */
|
|
/* xdgmimealias.h: Private file. Datastructure for storing the aliases.
|
|
*
|
|
* More info can be found at http://www.freedesktop.org/standards/
|
|
*
|
|
* Copyright (C) 2004 Red Hat, Inc.
|
|
* Copyright (C) 200 Matthias Clasen <mclasen@redhat.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later or AFL-2.0
|
|
*/
|
|
|
|
#ifndef __XDG_MIME_ALIAS_H__
|
|
#define __XDG_MIME_ALIAS_H__
|
|
|
|
#include "xdgmime.h"
|
|
|
|
typedef struct XdgAliasList XdgAliasList;
|
|
|
|
#ifdef XDG_PREFIX
|
|
#define _xdg_mime_alias_read_from_file XDG_RESERVED_ENTRY(alias_read_from_file)
|
|
#define _xdg_mime_alias_list_new XDG_RESERVED_ENTRY(alias_list_new)
|
|
#define _xdg_mime_alias_list_free XDG_RESERVED_ENTRY(alias_list_free)
|
|
#define _xdg_mime_alias_list_lookup XDG_RESERVED_ENTRY(alias_list_lookup)
|
|
#define _xdg_mime_alias_list_dump XDG_RESERVED_ENTRY(alias_list_dump)
|
|
#endif
|
|
|
|
void _xdg_mime_alias_read_from_file (XdgAliasList *list,
|
|
const char *file_name);
|
|
XdgAliasList *_xdg_mime_alias_list_new (void);
|
|
void _xdg_mime_alias_list_free (XdgAliasList *list);
|
|
const char *_xdg_mime_alias_list_lookup (XdgAliasList *list,
|
|
const char *alias);
|
|
void _xdg_mime_alias_list_dump (XdgAliasList *list);
|
|
|
|
#endif /* __XDG_MIME_ALIAS_H__ */
|