TpStartAsyncIoOperation - NtDoc

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

// winbase:StartThreadpoolIo
/**
 * Marks the start of one or more asynchronous I/O operations on the I/O completion object.
 *
 * \param[in,out] Io A pointer to a TP_IO structure that defines the I/O completion object.
 * \sa https://learn.microsoft.com/en-us/windows/win32/api/threadpoolapiset/nf-threadpoolapiset-startthreadpoolio
 */
NTSYSAPI
VOID
NTAPI
TpStartAsyncIoOperation(
    _Inout_ PTP_IO Io
    );

#endif

View code on GitHub

NtDoc

No description available.