コード例 #1
0
ファイル: DeviceDriver.cs プロジェクト: ewin66/intvideosurv
        public bool Init(ref DeviceInfo deviceInfo)
        {
            bool bRtn = false;

            _deviceInfo = deviceInfo;
            if (_deviceInfo.DeviceRunningStatus)
            {
                return(true);
            }
            if (_videoSource != null)
            {
                _videoSource.Init(ref deviceInfo);
                bRtn = true;
            }
            return(bRtn);
        }