mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
3781343738
2007-11-26 Alexander Larsson <alexl@redhat.com> * Makefile.am: * configure.in: * gio-2.0-uninstalled.pc.in: * gio-2.0.pc.in: * gio-unix-2.0-uninstalled.pc.in: * gio-unix-2.0.pc.in: * gio/ * docs/reference/gio Merged gio-standalone into glib. * glib/glibintl.h: * glib/gutils.c: Export glib_gettext so that gio can use it Add P_ (using same domain for now) Add I_ as g_intern_static_string svn path=/trunk/; revision=5941
32 lines
706 B
C
32 lines
706 B
C
#include <config.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
#include "gnativevolumemonitor.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)
|
|
{
|
|
}
|