ExceptionStatus.cs 225 B

1234567891011
  1. namespace OpenCvSharp.Internal;
  2. /// <summary>
  3. /// Whether native methods for P/Invoke raises an exception
  4. /// </summary>
  5. public enum ExceptionStatus
  6. {
  7. #pragma warning disable 1591
  8. NotOccurred = 0,
  9. Occurred = 1
  10. }