init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,29 @@
namespace Cef3
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Cef3.Interop;
/// <summary>
/// Implement this interface to receive notification when tracing has completed.
/// The methods of this class will be called on the browser process UI thread.
/// </summary>
public abstract unsafe partial class CefEndTracingCallback
{
private void on_end_tracing_complete(cef_end_tracing_callback_t* self, cef_string_t* tracing_file)
{
CheckSelf(self);
OnEndTracingComplete(cef_string_t.ToString(tracing_file));
}
/// <summary>
/// Called after all processes have sent their trace data. |tracing_file| is
/// the path at which tracing data was written. The client is responsible for
/// deleting |tracing_file|.
/// </summary>
protected abstract void OnEndTracingComplete(string tracingFile);
}
}