RtlRunOnceInitialize - NtDoc

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

NTSYSAPI
VOID
NTAPI
RtlRunOnceInitialize(
    _Out_ PRTL_RUN_ONCE RunOnce
    );

#endif

View code on GitHub
// ntddk.h

NTSYSAPI VOID RtlRunOnceInitialize(
  [out] PRTL_RUN_ONCE RunOnce
);
View the official Windows Driver Kit DDI reference

NtDoc

This function is documented in Windows Driver Kit.

Windows Driver Kit DDI reference (nf-ntddk-rtlrunonceinitialize)

RtlRunOnceInitialize function

Description

The RtlRunOnceInitialize routine initializes a RTL_RUN_ONCE structure.

Parameters

RunOnce [out]

Pointer to the RTL_RUN_ONCE one-time initialization structure.

Return value

None

See also

RTL_RUN_ONCE

RtlRunOnceBeginInitialize

RtlRunOnceComplete

RtlRunOnceExecuteOnce

RunOnceInitialization