Esempio n. 1
0
 //This function is broken cause it simply calls IsAnyCardRecording
 //We just left it here for compatibility.
 public static bool IsCaptureCardViewing()
 {
     if (!UseTVServer)
     {
         return(false);
     }
     //See if any card is timeshifting?
     return((bool)DynaInvoke.InvokeMethod(Config.GetFolder(Config.Dir.Base) + @"\TvControl.dll", "TvServer", "IsAnyCardRecording", null));
 }
Esempio n. 2
0
        public static bool IsCaptureCardRecording()
        {
            if (!UseTVServer)
            {
                return(false);
            }

            //Now see if we are recording
            return((bool)DynaInvoke.InvokeMethod(Config.GetFolder(Config.Dir.Base) + @"\TvControl.dll", "TvServer", "IsAnyCardRecording", null));
        }