EXTENDED_CREATE_DUAL_OPLOCK_KEYS - NtDoc

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

/**
 * The EXTENDED_CREATE_DUAL_OPLOCK_KEYS structure contains the parent and target oplock keys for an extended create operation.
 */
typedef struct _EXTENDED_CREATE_DUAL_OPLOCK_KEYS
{
    /**
     * Parent oplock key. All-zero if not set.
     */
    GUID ParentOplockKey;
    /**
     * Target oplock key. All-zero if not set.
     */
    GUID TargetOplockKey;
} EXTENDED_CREATE_DUAL_OPLOCK_KEYS, *PEXTENDED_CREATE_DUAL_OPLOCK_KEYS;

#endif

View code on GitHub

NtDoc

No description available.