mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 15:55:37 +00:00
27 lines
520 B
C#
27 lines
520 B
C#
|
// UnwrappedObject.cs - Class which holds an IntPtr without resolving it:
|
||
|
//
|
||
|
// Author: Rachel Hestilow <hestilow@ximian.com>
|
||
|
//
|
||
|
// (c) 2002 Rachel Hestilow
|
||
|
|
||
|
namespace GLib {
|
||
|
|
||
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
// <summary> Unwrapped object class </summary>
|
||
|
// <remarks> </remarks>
|
||
|
public class UnwrappedObject {
|
||
|
IntPtr obj;
|
||
|
|
||
|
public UnwrappedObject (IntPtr obj) {
|
||
|
this.obj = obj;
|
||
|
}
|
||
|
|
||
|
public static explicit operator System.IntPtr (UnwrappedObject obj) {
|
||
|
return obj.obj;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|