Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(640)

Side by Side Diff: base/third_party/xdg_mime/xdgmimeparent.h

Issue 113168: Add xdg mime support on Linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/third_party/xdg_mime/xdgmimemagic.c ('k') | base/third_party/xdg_mime/xdgmimeparent.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* xdgmimeparent.h: Private file. Datastructure for storing the hierarchy.
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 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, write to the
24 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 * Boston, MA 02111-1307, USA.
26 */
27
28 #ifndef __XDG_MIME_PARENT_H__
29 #define __XDG_MIME_PARENT_H__
30
31 #include "xdgmime.h"
32
33 typedef struct XdgParentList XdgParentList;
34
35 #ifdef XDG_PREFIX
36 #define _xdg_mime_parent_read_from_file XDG_RESERVED_ENTRY(parent_read_fr om_file)
37 #define _xdg_mime_parent_list_new XDG_RESERVED_ENTRY(parent_list_ne w)
38 #define _xdg_mime_parent_list_free XDG_RESERVED_ENTRY(parent_list_fr ee)
39 #define _xdg_mime_parent_list_lookup XDG_RESERVED_ENTRY(parent_list_lo okup)
40 #define _xdg_mime_parent_list_dump XDG_RESERVED_ENTRY(parent_list_du mp)
41 #endif
42
43 void _xdg_mime_parent_read_from_file (XdgParentList *list,
44 const char *file_name);
45 XdgParentList *_xdg_mime_parent_list_new (void);
46 void _xdg_mime_parent_list_free (XdgParentList *list);
47 const char **_xdg_mime_parent_list_lookup (XdgParentList *list,
48 const char *mime);
49 void _xdg_mime_parent_list_dump (XdgParentList *list);
50
51 #endif /* __XDG_MIME_PARENT_H__ */
OLDNEW
« no previous file with comments | « base/third_party/xdg_mime/xdgmimemagic.c ('k') | base/third_party/xdg_mime/xdgmimeparent.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698