mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 18:15:30 +00:00
2004-12-28 Jeroen Zwartepoorte <jeroen@xs4all.nl>
* sample/gnomevfs/TestVolumes.cs: Update sample. svn path=/trunk/gtk-sharp/; revision=38131
This commit is contained in:
parent
a1755d7914
commit
db2ab91013
|
@ -1,3 +1,7 @@
|
|||
2004-12-28 Jeroen Zwartepoorte <jeroen@xs4all.nl>
|
||||
|
||||
* sample/gnomevfs/TestVolumes.cs: Update sample.
|
||||
|
||||
2004-12-28 Jeroen Zwartepoorte <jeroen@xs4all.nl>
|
||||
|
||||
* gnomevfs/Gnomevfs.metadata: Hide some more API.
|
||||
|
|
|
@ -13,12 +13,12 @@ namespace Test.Gnome.Vfs {
|
|||
monitor.VolumeMounted += OnVolumeMounted;
|
||||
monitor.VolumeUnmounted += OnVolumeUnmounted;
|
||||
|
||||
GLib.List vols = monitor.MountedVolumes;
|
||||
Volume[] vols = monitor.MountedVolumes;
|
||||
Console.WriteLine ("Mounted volumes:");
|
||||
foreach (Volume v in vols)
|
||||
PrintVolume (v);
|
||||
|
||||
GLib.List drives = monitor.ConnectedDrives;
|
||||
Drive[] drives = monitor.ConnectedDrives;
|
||||
Console.WriteLine ("\nConnected drives:");
|
||||
foreach (Drive d in drives)
|
||||
PrintDrive (d);
|
||||
|
|
Loading…
Reference in a new issue