Пример #1
0
 public static extern void Report(
     ReportType type,
     string reportContext,
     string fileName,
     int lineNo,
     DDS.ErrorCode reportCode,
     string description);
Пример #2
0
        public static void Report(
            ReportType type,
            string reportContext,
            string fileName,
            DDS.ErrorCode reportCode,
            string description)
        {
            StackFrame callStack = new StackFrame(1, true);

            Report(type,
                   reportContext,
                   fileName,
                   callStack.GetFileLineNumber(),
                   reportCode,
                   description);
        }
Пример #3
0
 public static extern ReturnCode get_code(
     IntPtr _this,
     out DDS.ErrorCode code);