LLDB.Debugger.SetLoggingCallback C# (CSharp) Method

SetLoggingCallback() public method

public SetLoggingCallback ( LLDB log_callback, global baton ) : void
log_callback LLDB
baton global
return void
        public void SetLoggingCallback(LLDB.LogOutputCallback log_callback, global::System.IntPtr baton)
        {
            var arg0 = log_callback == null ? global::System.IntPtr.Zero : Marshal.GetFunctionPointerForDelegate(log_callback);
            var arg1 = baton;
            Internal.SetLoggingCallback_0((__Instance + __PointerAdjustment), arg0, arg1);
        }