EXTENDED_CREATE_INFORMATION_32 - NtDoc

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

typedef struct _EXTENDED_CREATE_INFORMATION_32
{
    LONGLONG ExtendedCreateFlags;
    void* POINTER_32 EaBuffer;
    ULONG EaLength;
    //PEXTENDED_CREATE_DUAL_OPLOCK_KEYS POINTER_32 DualOplockKeys; // since 24H2
} EXTENDED_CREATE_INFORMATION_32, *PEXTENDED_CREATE_INFORMATION_32;

#endif

View code on GitHub
// wdm.h

typedef struct _EXTENDED_CREATE_INFORMATION_32 {
  LONGLONG                                     ExtendedCreateFlags;
  void POINTER_32                                         *EaBuffer;
  ULONG                                        EaLength;
  PEXTENDED_CREATE_DUAL_OPLOCK_KEYS POINTER_32 DualOplockKeys;
} EXTENDED_CREATE_INFORMATION_32, *PEXTENDED_CREATE_INFORMATION_32;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-extended_create_information_32)

Description

Describes the 32-bit version of the EXTENDED_CREATE_INFORMATION structure.

Members

ExtendedCreateFlags

Defines the LONGLONG member ExtendedCreateFlags.

EaBuffer

Defines the void* POINTER_32 member EaBuffer.

EaLength

Defines the ULONG member EaLength.

Remarks

See also