#ifndef _NTREGAPI_H
// msdn
/**
* \def REG_KEY_DONT_VIRTUALIZE
* \brief The REG_KEY_DONT_VIRTUALIZE flag disables write registry virtualization.
*
* If this flag is set and a create key or set value operation fails because the caller
* does not have sufficient access right to the parent key, the registry fails the operation.
* If this flag is clear, the registry attempts to write the key or value in the virtual store.
* The caller must have the KEY_READ right on the parent key.
*/
#define REG_KEY_DONT_VIRTUALIZE 0x0002
View code on GitHub
No description available.