mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 00:46:16 +01:00
761424465a
2008-06-21 Johan Dahlin <jdahlin@async.com.br> * *.[ch]: Include "config.h" instead of <config.h> Command used: find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g' Rubberstamped by Mitch svn path=/trunk/; revision=7092
35 lines
716 B
C
35 lines
716 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)
|
|
{
|
|
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"
|