61 lines
1.7 KiB
C#
61 lines
1.7 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated />
|
|
//
|
|
// This file was automatically generated by SWIG (http://www.swig.org).
|
|
// Version 4.0.2
|
|
//
|
|
// Do not make changes to this file unless you know what you are doing--modify
|
|
// the SWIG interface file instead.
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace com.taptap.tapsdk.bindings.csharp {
|
|
|
|
public class Window : global::System.IDisposable {
|
|
private global::System.Runtime.InteropServices.HandleRef swigCPtr;
|
|
private bool swigCMemOwnBase;
|
|
|
|
internal Window(global::System.IntPtr cPtr, bool cMemoryOwn) {
|
|
swigCMemOwnBase = cMemoryOwn;
|
|
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
|
|
}
|
|
|
|
internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Window obj) {
|
|
return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
|
|
}
|
|
|
|
~Window() {
|
|
Dispose(false);
|
|
}
|
|
|
|
public void Dispose() {
|
|
Dispose(true);
|
|
global::System.GC.SuppressFinalize(this);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing) {
|
|
lock(this) {
|
|
if (swigCPtr.Handle != global::System.IntPtr.Zero) {
|
|
if (swigCMemOwnBase) {
|
|
swigCMemOwnBase = false;
|
|
PlatformPINVOKE.delete_Window(swigCPtr);
|
|
}
|
|
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void OnForeground() {
|
|
PlatformPINVOKE.Window_OnForeground();
|
|
}
|
|
|
|
public static void OnBackground() {
|
|
PlatformPINVOKE.Window_OnBackground();
|
|
}
|
|
|
|
public Window() : this(PlatformPINVOKE.new_Window(), true) {
|
|
}
|
|
|
|
}
|
|
|
|
}
|