7f3171c814
is now tracking Gnome 2.6. svn path=/trunk/gtk-sharp/; revision=35479
27 lines
374 B
C#
27 lines
374 B
C#
//
|
|
// Handle.cs: Wrapper class for GnomeVFSHandle struct.
|
|
//
|
|
// Author:
|
|
// Jeroen Zwartepoorte <jeroen@xs4all.nl>
|
|
//
|
|
// (C) Copyright Jeroen Zwartepoorte 2004
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace Gnome.Vfs {
|
|
public class Handle {
|
|
private IntPtr raw;
|
|
|
|
internal IntPtr Raw {
|
|
get {
|
|
return raw;
|
|
}
|
|
}
|
|
|
|
internal Handle (IntPtr raw)
|
|
{
|
|
this.raw = raw;
|
|
}
|
|
}
|
|
}
|