#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;
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 referenceNo description available.
Describes the 32-bit version of the EXTENDED_CREATE_INFORMATION structure.
ExtendedCreateFlagsDefines the LONGLONG member ExtendedCreateFlags.
EaBufferDefines the void* POINTER_32 member EaBuffer.
EaLengthDefines the ULONG member EaLength.