~noskcaj/ubuntu/vivid/thunar/1.6.4

« back to all changes in this revision

Viewing changes to thunar-vfs/thunar-vfs-volume-none.c

  • 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
 
#ifdef HAVE_CONFIG_H
22
 
#include <config.h>
23
 
#endif
24
 
 
25
 
#include <thunar-vfs/thunar-vfs-volume-none.h>
26
 
#include <thunar-vfs/thunar-vfs-volume-private.h>
27
 
#include <thunar-vfs/thunar-vfs-alias.h>
28
 
 
29
 
 
30
 
 
31
 
struct _ThunarVfsVolumeManagerNoneClass
32
 
{
33
 
  ThunarVfsVolumeManagerClass __parent__;
34
 
};
35
 
 
36
 
struct _ThunarVfsVolumeManagerNone
37
 
{
38
 
  ThunarVfsVolumeClass __parent__;
39
 
};
40
 
 
41
 
 
42
 
 
43
 
GType
44
 
thunar_vfs_volume_manager_none_get_type (void)
45
 
{
46
 
  static GType type = G_TYPE_INVALID;
47
 
 
48
 
  if (G_UNLIKELY (type == G_TYPE_INVALID))
49
 
    {
50
 
      static const GTypeInfo info =
51
 
      {
52
 
        sizeof (ThunarVfsVolumeManagerNoneClass),
53
 
        NULL,
54
 
        NULL,
55
 
        NULL,
56
 
        NULL,
57
 
        NULL,
58
 
        sizeof (ThunarVfsVolumeManagerNone),
59
 
        0,
60
 
        NULL,
61
 
        NULL,
62
 
      };
63
 
 
64
 
      type = g_type_register_static (THUNAR_VFS_TYPE_VOLUME_MANAGER, I_("ThunarVfsVolumeManagerNone"), &info, 0);
65
 
    }
66
 
 
67
 
  return type;
68
 
}
69
 
 
70
 
 
71
 
 
72
 
#define __THUNAR_VFS_VOLUME_NONE_C__
73
 
#include <thunar-vfs/thunar-vfs-aliasdef.c>