Share via


IOCTL_NDISUIO_CANCEL_NOTIFICATION (Compact 2013)

3/26/2014

This I/O control message lets the application cancel the notification that it has requested in IOCTL_NDISUIO_REQUEST_NOTIFICATION. Send this message with DeviceIoControl.

Syntax

BOOL DeviceIoControl(
    HANDLE hDevice,          // handle to the device
    DWORD dwIoControlCode,   // use IOCTL_NDISUIO_CANCEL_NOTIFICATION
    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
    OVERLAPPED lpOverlapped  // pointer to OVERLAPPED structure
);

Parameters

  • hDevice
    [in] Handle to the device.
  • dwIoControlCode
    [in] The control code for the operation. Use IOCTL_NDISUIO_CANCEL_NOTIFICATION for this operation.

Requirements

Header

ntddndis.h,
nuiouser.h

See Also

Reference

NDIS 5.x Legacy Network Driver IOCTLs
IOCTL_NDISUIO_REQUEST_NOTIFICATION