#ifndef _NTREGAPI_H
/**
* The KEY_HANDLE_TAGS_INFORMATION structure contains information about the handle tags for a key.
*
* The fields include:
* - HandleTags: A set of tags associated with the key handle. These tags are used to store additional
* metadata or state information about the key handle.
*/
typedef struct _KEY_HANDLE_TAGS_INFORMATION
{
ULONG HandleTags;
} KEY_HANDLE_TAGS_INFORMATION, *PKEY_HANDLE_TAGS_INFORMATION;
View code on GitHub
No description available.