#ifndef _NTRTL_H
NTSYSAPI
VOID
NTAPI
RtlRunOnceInitialize(
_Out_ PRTL_RUN_ONCE RunOnce
);
View code on GitHub// ntddk.h
NTSYSAPI VOID RtlRunOnceInitialize(
[out] PRTL_RUN_ONCE RunOnce
);
View the official Windows Driver Kit DDI referenceThis function is documented in Windows Driver Kit.
The RtlRunOnceInitialize routine initializes a RTL_RUN_ONCE structure.
RunOnce [out]Pointer to the RTL_RUN_ONCE one-time initialization structure.
None