Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 590 of file port_topology.cpp.
Referenced by PcNewPort().
{ CPortTopology * This; NTSTATUS Status; This= new(NonPagedPool, TAG_PORTCLASS) CPortTopology(NULL); if (!This) return STATUS_INSUFFICIENT_RESOURCES; Status = This->QueryInterface(IID_IPort, (PVOID*)OutPort); if (!NT_SUCCESS(Status)) { delete This; } DPRINT("NewPortTopology %p Status %x\n", *OutPort, Status); return Status; }