Freigeben über


IOCTL_UNIT_DEREFERENCE_CONNECTION_PLUG (Windows CE 5.0)

Send Feedback

This IOCTL permits a subunit to release and free any resources associated with a remote plug provided by a previous call to UNIT_ConnectToRemotePlugCB. The DeviceIoControl function calls this IOCTL.

Parameters

  • hDevice
    [in] Handle to the target object. To get a device handle, call the CreateFile function with a name obtained dynamically from the SetupDiEnumDeviceInterfaces function.
  • dwIoControlCode
    [in] Set to IOCTL_UNIT_DEREFERENCE_CONNECTION_PLUG. This value identifies the target operation and the type of device on which to perform it.
  • lpInBuffer
    [in] Must be completed with a properly initialized UNIT_DereferenceConnectionPlug_Request structure. The udcp_RegistrationToken and udcp_Plug members must be pre-initialized.
  • BufferSize
    [in] Set to sizeof(UNIT_DereferenceConnectionPlug_Request).
  • lpOutBuffer
    [in] Unused. Set to NULL.
  • nOutBufferSize
    [in] Unused. Set to 0.
  • lpBytesReturned
    [out] Pointer to a DWORD variable that receives the actual count of bytes returned by the function in the output buffer. For this command, set to 0.
  • lpOverlapped
    [out] If not used, NULL. Otherwise, this should point to a completely filled out OVERLAPPED structure that contains a valid event. The event will be signaled when the I/O operation is complete.

Return Values

If the operation succeeds, DeviceIoControl returns a non-zero value. If the operation fails, DeviceIoControl returns zero. To get extended error information, call GetLastError.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Avc_unit.h.

See Also

CreateFile | DeviceIoControl | UNIT_ConnectToRemotePlugCB | UNIT_DereferenceConnectionPlug_Request

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.