コード例 #1
0
ファイル: AxInterop.WMPLib.cs プロジェクト: kimykunjun/test
 internal void RaiseOnDeviceEstimation(object sender, _WMPOCXEvents_DeviceEstimationEvent e)
 {
     if ((this.DeviceEstimation != null)) {
         this.DeviceEstimation(sender, e);
     }
 }
コード例 #2
0
ファイル: AxInterop.WMPLib.cs プロジェクト: kimykunjun/test
 public virtual void DeviceEstimation(WMPLib.IWMPSyncDevice pDevice, int hrResult, long qwEstimatedUsedSpace, long qwEstimatedSpace)
 {
     _WMPOCXEvents_DeviceEstimationEvent deviceestimationEvent = new _WMPOCXEvents_DeviceEstimationEvent(pDevice, hrResult, qwEstimatedUsedSpace, qwEstimatedSpace);
     this.parent.RaiseOnDeviceEstimation(this.parent, deviceestimationEvent);
 }