namespace Cef3
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Cef3.Interop;
///
/// Callback interface for asynchronous continuation of print job requests.
///
public sealed unsafe partial class CefPrintJobCallback
{
///
/// Indicate completion of the print job.
///
public void Continue()
{
cef_print_job_callback_t.cont(_self);
}
}
}