#ifndef _NTREGAPI_H
/**
* Structure representing the last write time of a registry key.
*
* The values include:
* - LastWriteTime: Contains the timestamp of the last write operation performed on a registry key.
*/
typedef struct _KEY_WRITE_TIME_INFORMATION
{
LARGE_INTEGER LastWriteTime;
} KEY_WRITE_TIME_INFORMATION, *PKEY_WRITE_TIME_INFORMATION;
View code on GitHub
This structure is documented in Windows Driver Kit.