~noskcaj/ubuntu/vivid/thunar/1.6.4

« back to all changes in this revision

Viewing changes to thunar-vfs/thunar-vfs-mime-action-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-04 16:46:20 UTC
  • mto: (2.1.3 experimental) (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 69.
  • Revision ID: james.westby@ubuntu.com-20101204164620-h7p4t2e9z6hfhz6l
Tags: upstream-1.1.4
ImportĀ upstreamĀ versionĀ 1.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id$ */
2
 
/*-
3
 
 * Copyright (c) 2005-2006 Benedikt Meurer <benny@xfce.org>
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Library General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public
16
 
 * License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
19
 
 */
20
 
 
21
 
#if !defined (THUNAR_VFS_INSIDE_THUNAR_VFS_H) && !defined (THUNAR_VFS_COMPILATION)
22
 
#error "Only <thunar-vfs/thunar-vfs.h> can be included directly, this file may disappear or change contents."
23
 
#endif
24
 
 
25
 
#ifndef __THUNAR_VFS_MIME_ACTION_PRIVATE_H__
26
 
#define __THUNAR_VFS_MIME_ACTION_PRIVATE_H__
27
 
 
28
 
#include <thunar-vfs/thunar-vfs-mime-action.h>
29
 
#include <thunar-vfs/thunar-vfs-mime-handler-private.h>
30
 
 
31
 
G_BEGIN_DECLS;
32
 
 
33
 
struct _ThunarVfsMimeActionClass
34
 
{
35
 
  ThunarVfsMimeHandlerClass __parent__;
36
 
};
37
 
 
38
 
struct _ThunarVfsMimeAction
39
 
{
40
 
  ThunarVfsMimeHandler __parent__;
41
 
};
42
 
 
43
 
ThunarVfsMimeAction *_thunar_vfs_mime_action_new (const gchar              *command,
44
 
                                                  const gchar              *name,
45
 
                                                  const gchar              *icon,
46
 
                                                  ThunarVfsMimeHandlerFlags flags) G_GNUC_INTERNAL G_GNUC_MALLOC;
47
 
 
48
 
G_END_DECLS;
49
 
 
50
 
#endif /* !__THUNAR_VFS_MIME_ACTION_PRIVATE_H__ */