123456789101112131415161718192021 |
- using Sonic;
- using System;
- using System.Diagnostics;
- namespace VideoPlayLib
- {
- internal class BaseObject
- {
-
- [DebuggerHidden]
- protected static void CheckError(int result)
- {
- var h = new HRESULT(result);
- if (h.Failed)
- {
- throw new Exception(h.Text);
- }
- }
- }
- }
|