| OLD | NEW |
| (Empty) |
| 1 /* -*- mode: C; c-file-style: "gnu" -*- */ | |
| 2 /* xdgmimeicon.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) 2008 Red Hat, Inc. | |
| 7 * | |
| 8 * Licensed under the Academic Free License version 2.0 | |
| 9 * Or under the following terms: | |
| 10 * | |
| 11 * This library is free software; you can redistribute it and/or | |
| 12 * modify it under the terms of the GNU Lesser General Public | |
| 13 * License as published by the Free Software Foundation; either | |
| 14 * version 2 of the License, or (at your option) any later version. | |
| 15 * | |
| 16 * This library is distributed in the hope that it will be useful, | |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 19 * Lesser General Public License for more details. | |
| 20 * | |
| 21 * You should have received a copy of the GNU Lesser General Public | |
| 22 * License along with this library; if not, write to the | |
| 23 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 24 * Boston, MA 02111-1307, USA. | |
| 25 */ | |
| 26 | |
| 27 #ifndef __XDG_MIME_ICON_H__ | |
| 28 #define __XDG_MIME_ICON_H__ | |
| 29 | |
| 30 #include "xdgmime.h" | |
| 31 | |
| 32 typedef struct XdgIconList XdgIconList; | |
| 33 | |
| 34 #ifdef XDG_PREFIX | |
| 35 #define _xdg_mime_icon_read_from_file XDG_ENTRY(icon_read_from_file) | |
| 36 #define _xdg_mime_icon_list_new XDG_ENTRY(icon_list_new) | |
| 37 #define _xdg_mime_icon_list_free XDG_ENTRY(icon_list_free) | |
| 38 #define _xdg_mime_icon_list_lookup XDG_ENTRY(icon_list_lookup) | |
| 39 #define _xdg_mime_icon_list_dump XDG_ENTRY(icon_list_dump) | |
| 40 #endif | |
| 41 | |
| 42 void _xdg_mime_icon_read_from_file (XdgIconList *list, | |
| 43 const char *file_name); | |
| 44 XdgIconList *_xdg_mime_icon_list_new (void); | |
| 45 void _xdg_mime_icon_list_free (XdgIconList *list); | |
| 46 const char *_xdg_mime_icon_list_lookup (XdgIconList *list, | |
| 47 const char *mime); | |
| 48 void _xdg_mime_icon_list_dump (XdgIconList *list); | |
| 49 | |
| 50 #endif /* __XDG_MIME_ICON_H__ */ | |
| OLD | NEW |