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