Example #1
0
 void _WMPOCXEvents.DeviceEstimation (IWMPSyncDevice pDevice, uint hrResult, long qwEstimatedUsedSpace, long qwEstimatedSpace)
 {
   if (DeviceEstimationDelegate!=null)
     DeviceEstimationDelegate(pDevice, hrResult, qwEstimatedUsedSpace, qwEstimatedSpace);
 }
Example #2
0
 void _WMPOCXEvents.CreatePartnershipComplete (IWMPSyncDevice pDevice, uint hrResult)
 {
   if (CreatePartnershipCompleteDelegate!=null)
     CreatePartnershipCompleteDelegate(pDevice, hrResult);
 }
Example #3
0
 void _WMPOCXEvents.DeviceSyncError (IWMPSyncDevice pDevice, object pMedia)
 {
   if (DeviceSyncErrorDelegate!=null)
     DeviceSyncErrorDelegate(pDevice, pMedia);
 }
Example #4
0
 void _WMPOCXEvents.DeviceSyncStateChange (IWMPSyncDevice pDevice, WMPSyncState NewState)
 {
   if (DeviceSyncStateChangeDelegate!=null)
     DeviceSyncStateChangeDelegate(pDevice, NewState);
 }
Example #5
0
 void _WMPOCXEvents.DeviceStatusChange (IWMPSyncDevice pDevice, WMPDeviceStatus NewStatus)
 {
   if (DeviceStatusChangeDelegate!=null)
     DeviceStatusChangeDelegate(pDevice, NewStatus);
 }
Example #6
0
 void _WMPOCXEvents.DeviceDisconnect (IWMPSyncDevice pDevice)
 {
   if (DeviceDisconnectDelegate!=null)
     DeviceDisconnectDelegate(pDevice);
 }