IO_COMPLETION_BASIC_INFORMATION - NtDoc

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

typedef struct _IO_COMPLETION_BASIC_INFORMATION
{
    LONG Depth;
} IO_COMPLETION_BASIC_INFORMATION, *PIO_COMPLETION_BASIC_INFORMATION;

#endif

View code on GitHub

Structure IO_COMPLETION_BASIC_INFORMATION is used as result of call NtQueryIoCompletion with IoCompletionBasicInformation information class.

Depth

Number of currently pending file operations for specified IO Completion Object.

Documented by

See also