IO_COMPLETION_INFORMATION_CLASS - NtDoc

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

typedef enum _IO_COMPLETION_INFORMATION_CLASS
{
    IoCompletionBasicInformation
} IO_COMPLETION_INFORMATION_CLASS;

#endif

View code on GitHub

Enumeration type IO_COMPLETION_INFORMATION_CLASS is used with NtQueryIoCompletion function to get information about IO Completion object. Currently only one information class is defined.

IoCompletionBasicInformation

Buffer receiving data is described as IO_COMPLETION_BASIC_INFORMATION structure and has 0x04 bytes length.

Documented by

See also