#ifndef _NTREGAPI_H
/**
* The KEY_WOW64_FLAGS_INFORMATION structure contains information about the WOW64 flags for a key.
*
* The fields include:
* - UserFlags: A set of user-defined flags associated with the key. These flags are used to store
* additional information about the key in the context of WOW64 (Windows 32-bit on Windows 64-bit).
*/
typedef struct _KEY_WOW64_FLAGS_INFORMATION
{
ULONG UserFlags;
} KEY_WOW64_FLAGS_INFORMATION, *PKEY_WOW64_FLAGS_INFORMATION;
View code on GitHub
No description available.