Ejemplo n.º 1
0
        private void DebugProxy(string format, IntPtr va_args)
        {
            string text = NativeMethods.printf(format, va_args);

            rptDebug?.Invoke(text);
        }
Ejemplo n.º 2
0
        private void MessageProxy(string format, IntPtr va_args)
        {
            string text = NativeMethods.printf(format, va_args);

            rptMsg?.Invoke(text);
        }
Ejemplo n.º 3
0
        private void ErrorProxy(string format, IntPtr va_args)
        {
            string text = NativeMethods.printf(format, va_args);

            rptError?.Invoke(text);
        }