mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
d9594f5709
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
36 lines
792 B
C
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"
|