AFD_TL_IO_CONTROL_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTAFD_H

// private
typedef struct _AFD_TL_IO_CONTROL_INFO
{
    TL_IO_CONTROL_TYPE Type;
    ULONG Level; // SOL_* or IPPROTO_* or HV_PROTOCOL_RAW
    ULONG IoControlCode; // SIO_*, SO_*, IP_*, IPV6_*, TCP_*, UDP_*, HVSOCKET_*, etc. (depending on type and level)
    BOOLEAN EndpointIoctl; // must be TRUE
    _Field_size_bytes_(InputBufferLength) PVOID InputBuffer;
    SIZE_T InputBufferLength;
} AFD_TL_IO_CONTROL_INFO, *PAFD_TL_IO_CONTROL_INFO;

#endif

View code on GitHub

No description available.