public static int get_start_column(cef_v8exception_t *self)
        {
            get_start_column_delegate d;
            var p = self->_get_start_column;

            if (p == _p9)
            {
                d = _d9;
            }
            else
            {
                d = (get_start_column_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(get_start_column_delegate));
                if (_p9 == IntPtr.Zero)
                {
                    _d9 = d; _p9 = p;
                }
            }
            return(d(self));
        }
Example #2
0
 public static int get_start_column(cef_v8exception_t* self)
 {
     get_start_column_delegate d;
     var p = self->_get_start_column;
     if (p == _p9) { d = _d9; }
     else
     {
         d = (get_start_column_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(get_start_column_delegate));
         if (_p9 == IntPtr.Zero) { _d9 = d; _p9 = p; }
     }
     return d(self);
 }