glib/gio/gnativevolumemonitor.c
Alexander Larsson d9594f5709 Removed unnecessary file
2007-11-28  Alexander Larsson  <alexl@redhat.com>

        * Makefile.am:
        * gdriveprivate.h:
	Removed unnecessary file
	
        * gdesktopappinfo.[ch]:
        * gdummyfile.[ch]:
        * gfile.c:
        * glocaldirectorymonitor.[ch]:
        * glocalfile.[ch]:
        * glocalfileenumerator.[ch]:
        * glocalfileinputstream.[ch]:
        * glocalfilemonitor.[ch]:
        * glocalfileoutputstream.[ch]:
        * glocalvfs.[ch]:
        * gnativevolumemonitor.c:
        * gpollfilemonitor.[ch]:
        * gunionvolumemonitor.[ch]:
        * gunixdrive.[ch]:
        * gunixvolume.[ch]:
        * gunixvolumemonitor.[ch]:
        * gvfs.c:
        * gvolumeprivate.h:
        * inotify/ginotifydirectorymonitor.[ch]:
        * inotify/ginotifyfilemonitor.[ch]:
        * inotify/inotify-helper.c:
	Append _ to all internal functions
	
        * gio.symbols:
	Add missing symbols
	Export symbols needed for modules


svn path=/trunk/; revision=5977
2007-11-28 16:01:59 +00:00

36 lines
792 B
C

#include <config.h>
#include <string.h>
#include <glib.h>
#include "gnativevolumemonitor.h"
#include "gioalias.h"
G_DEFINE_ABSTRACT_TYPE (GNativeVolumeMonitor, g_native_volume_monitor, G_TYPE_VOLUME_MONITOR);
static void
g_native_volume_monitor_finalize (GObject *object)
{
if (G_OBJECT_CLASS (g_native_volume_monitor_parent_class)->finalize)
(*G_OBJECT_CLASS (g_native_volume_monitor_parent_class)->finalize) (object);
}
static void
g_native_volume_monitor_class_init (GNativeVolumeMonitorClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->finalize = g_native_volume_monitor_finalize;
}
static void
g_native_volume_monitor_init (GNativeVolumeMonitor *native_monitor)
{
}
#define __G_NATIVE_VOLUME_MONITOR_C__
#include "gioaliasdef.c"