52 lines
1.8 KiB
C#
52 lines
1.8 KiB
C#
|
using RootSystem = System;
|
||
|
using System.Linq;
|
||
|
using System.Collections.Generic;
|
||
|
namespace Windows.Kinect
|
||
|
{
|
||
|
//
|
||
|
// Windows.Kinect.CoordinateMappingChangedEventArgs
|
||
|
//
|
||
|
public sealed partial class CoordinateMappingChangedEventArgs : RootSystem.EventArgs, Helper.INativeWrapper
|
||
|
|
||
|
{
|
||
|
internal RootSystem.IntPtr _pNative;
|
||
|
RootSystem.IntPtr Helper.INativeWrapper.nativePtr { get { return _pNative; } }
|
||
|
|
||
|
// Constructors and Finalizers
|
||
|
internal CoordinateMappingChangedEventArgs(RootSystem.IntPtr pNative)
|
||
|
{
|
||
|
_pNative = pNative;
|
||
|
Windows_Kinect_CoordinateMappingChangedEventArgs_AddRefObject(ref _pNative);
|
||
|
}
|
||
|
|
||
|
~CoordinateMappingChangedEventArgs()
|
||
|
{
|
||
|
Dispose(false);
|
||
|
}
|
||
|
|
||
|
[RootSystem.Runtime.InteropServices.DllImport("KinectUnityAddin", CallingConvention=RootSystem.Runtime.InteropServices.CallingConvention.Cdecl, SetLastError=true)]
|
||
|
private static extern void Windows_Kinect_CoordinateMappingChangedEventArgs_ReleaseObject(ref RootSystem.IntPtr pNative);
|
||
|
[RootSystem.Runtime.InteropServices.DllImport("KinectUnityAddin", CallingConvention=RootSystem.Runtime.InteropServices.CallingConvention.Cdecl, SetLastError=true)]
|
||
|
private static extern void Windows_Kinect_CoordinateMappingChangedEventArgs_AddRefObject(ref RootSystem.IntPtr pNative);
|
||
|
private void Dispose(bool disposing)
|
||
|
{
|
||
|
if (_pNative == RootSystem.IntPtr.Zero)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
__EventCleanup();
|
||
|
|
||
|
Helper.NativeObjectCache.RemoveObject<CoordinateMappingChangedEventArgs>(_pNative);
|
||
|
Windows_Kinect_CoordinateMappingChangedEventArgs_ReleaseObject(ref _pNative);
|
||
|
|
||
|
_pNative = RootSystem.IntPtr.Zero;
|
||
|
}
|
||
|
|
||
|
private void __EventCleanup()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|