Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 15 of file devinst.c.
Referenced by InstallDriver(), SetupDiChangeState(), SetupDiInstallDevice(), and USBSTOR_TimerRoutine().
{ PLUGPLAY_CONTROL_RESET_DEVICE_DATA ResetDeviceData; NTSTATUS Status; RtlInitUnicodeString(&ResetDeviceData.DeviceInstance, DeviceId); Status = NtPlugPlayControl(PlugPlayControlResetDevice, &ResetDeviceData, sizeof(PLUGPLAY_CONTROL_RESET_DEVICE_DATA)); if (!NT_SUCCESS(Status)) { DPRINT1("NtPlugPlayControl() failed with status 0x%08x\n", Status); return FALSE; } return TRUE; }