1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- //
- // DO NOT MODIFY! THIS IS AUTOGENERATED FILE!
- //
- namespace Xilium.CefGlue
- {
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Runtime.InteropServices;
- using System.Threading;
- using Xilium.CefGlue.Interop;
-
- // Role: PROXY
- public sealed unsafe partial class CefPrintDialogCallback : IDisposable
- {
- internal static CefPrintDialogCallback FromNative(cef_print_dialog_callback_t* ptr)
- {
- return new CefPrintDialogCallback(ptr);
- }
-
- internal static CefPrintDialogCallback FromNativeOrNull(cef_print_dialog_callback_t* ptr)
- {
- if (ptr == null) return null;
- return new CefPrintDialogCallback(ptr);
- }
-
- private cef_print_dialog_callback_t* _self;
- private int _disposed = 0;
-
- private CefPrintDialogCallback(cef_print_dialog_callback_t* ptr)
- {
- if (ptr == null) throw new ArgumentNullException("ptr");
- _self = ptr;
- CefObjectTracker.Track(this);
- }
-
- ~CefPrintDialogCallback()
- {
- if (Interlocked.CompareExchange(ref _disposed, 1, 0) == 0)
- {
- Release();
- _self = null;
- }
- }
-
- public void Dispose()
- {
- if (Interlocked.CompareExchange(ref _disposed, 1, 0) == 0)
- {
- Release();
- _self = null;
- }
- CefObjectTracker.Untrack(this);
- GC.SuppressFinalize(this);
- }
-
- internal void AddRef()
- {
- cef_print_dialog_callback_t.add_ref(_self);
- }
-
- internal bool Release()
- {
- return cef_print_dialog_callback_t.release(_self) != 0;
- }
-
- internal bool HasOneRef
- {
- get { return cef_print_dialog_callback_t.has_one_ref(_self) != 0; }
- }
-
- internal bool HasAtLeastOneRef
- {
- get { return cef_print_dialog_callback_t.has_at_least_one_ref(_self) != 0; }
- }
-
- internal cef_print_dialog_callback_t* ToNative()
- {
- AddRef();
- return _self;
- }
- }
- }
|