////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

        public int InterceptCurrentException(enum_INTERCEPT_EXCEPTION_ACTION dwFlags, out ulong pqwCookie)
        {
            //
            // Called by the debugger on the current stack frame when it wants to intercept the current exception.
            //

            LoggingUtils.PrintFunction();

            try
            {
                throw new NotImplementedException();
            }
            catch (NotImplementedException e)
            {
                LoggingUtils.HandleException(e);

                pqwCookie = 0;

                return(Constants.E_NOTIMPL);
            }
        }
 public int InterceptCurrentException(enum_INTERCEPT_EXCEPTION_ACTION dwFlags, out ulong pqwCookie)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public int InterceptCurrentException(enum_INTERCEPT_EXCEPTION_ACTION dwFlags, out ulong pqwCookie)
 {
     throw new NotImplementedException();
 }