ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

static NTSTATUS NTAPI SerenumFdoStartDevice ( IN PDEVICE_OBJECT  DeviceObject,
IN PIRP  Irp 
) [static]

Definition at line 75 of file fdo.c.

Referenced by SerenumFdoPnp().

{
    PFDO_DEVICE_EXTENSION DeviceExtension;
    NTSTATUS Status;

    TRACE_(SERENUM, "SerenumFdoStartDevice() called\n");
    DeviceExtension = (PFDO_DEVICE_EXTENSION)DeviceObject->DeviceExtension;

    ASSERT(DeviceExtension->Common.PnpState == dsStopped);

    Status = IoSetDeviceInterfaceState(&DeviceExtension->SerenumInterfaceName, TRUE);
    if (!NT_SUCCESS(Status))
    {
        WARN_(SERENUM, "IoSetDeviceInterfaceState() failed with status 0x%08lx\n", Status);
        return Status;
    }

    DeviceExtension->Common.PnpState = dsStarted;

    return STATUS_SUCCESS;
}

Generated on Sun May 27 2012 05:23:06 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.