mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 02:05:41 +00:00
7f3171c814
is now tracking Gnome 2.6. svn path=/trunk/gtk-sharp/; revision=35479
22 lines
553 B
Plaintext
22 lines
553 B
Plaintext
//
|
|
// Gnome.Vfs.VolumeMonitor.custom - Gnome Vfs VolumeMonitor class customizations
|
|
//
|
|
// Author: Jeroen Zwartepoorte (jeroen@xs4all.nl)
|
|
//
|
|
// Copyright (C) 2004 Jeroen Zwartepoorte
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
[DllImport("gnomevfs-2")]
|
|
static extern IntPtr gnome_vfs_get_volume_monitor ();
|
|
|
|
public static VolumeMonitor Get ()
|
|
{
|
|
IntPtr raw_ret = gnome_vfs_get_volume_monitor ();
|
|
if (raw_ret == IntPtr.Zero)
|
|
return null;
|
|
else
|
|
return (VolumeMonitor) GLib.Object.GetObject (raw_ret);
|
|
}
|