次の方法で共有


IOCTL_VBRIDGE_GET_TX_PACKET_COMPLETE (Compact 2013)

10/16/2014

This I/O control message returns the transmit buffer obtained through IOCTL_VBRIDGE_GET_TX_PACKET to VBridge. The VMINI driver calls this message with KernelIoControl.

Syntax

BOOL KernelIoControl(
    DWORD dwIoControlCode,    // use IOCTL_VBRIDGE_GET_TX_PACKET_COMPLETE
    LPVOID lpInBuffer,        // pointer to input buffer
    DWORD nInBufferSize,      // input buffer size
    LPVOID lpOutBuffer,       // pointer to output buffer
    DWORD nOutBufferSize,     // output buffer size
    LPDWORD lpBytesReturned  // number of bytes returned
);

Parameters

  • dwIoControlCode
    [in] Control code for the operation. Use IOCTL_VBRIDGE_GET_TX_PACKET_COMPLETE for this operation.
  • lpInBuffer
    [in] Pointer to buffer obtained in IOCTL_VBRIDGE_GET_TX_PACKET.
  • nInBufferSize
    [in] Size of the buffer pointed to by lpInBuffer.
  • lpOutBuffer
    Not used.
  • nOutBufferSize
    Not used.
  • lpBytesReturned
    Not used.

Return Values

None.

Requirements

Header

pkfuncs.h

See Also

Reference

VMINI IOCTLs
IOCTL_VBRIDGE_GET_TX_PACKET
OEMIoControl