次の方法で共有


IOCTL_VBRIDGE_WILD_CARD_VB_INITIALIZED (Compact 2013)

10/16/2014

This I/O control message determines whether VBridge has been initialized by the kernel and OAL code. The VMINI driver calls this message with KernelIoControl.

Syntax

BOOL KernelIoControl(
    DWORD dwIoControlCode,    // use IOCTL_VBRIDGE_WILD_CARD
    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_WILD_CARD for this operation.
  • lpInBuffer
    [in] Set to IOCTL_VBRIDGE_WILD_CARD_VB_INITIALIZED.
  • nInBufferSize
    Not used.
  • lpOutBuffer
    [out] Points to 4 bytes of memory to receive TRUE or FALSE.
  • nOutBufferSize
    Not used.
  • lpBytesReturned
    [in] Size of DWORD for successful call.

Return Values

None.

Requirements

Header

pkfuncs.h

See Also

Reference

VMINI IOCTLs
OEMIoControl
IOCTL_VBRIDGE_WILD_CARD