REG_FLAG_VOLATILE - NtDoc

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

//
// REG_FLAG_*
//

// rev
/**
 * \def REG_FLAG_VOLATILE
 * \brief The registry key is volatile.
 *
 * When this flag is set, the key is not preserved when the system is rebooted.
 * Volatile keys exist only in memory and are lost when the system shuts down.
 */
#define REG_FLAG_VOLATILE 0x0001

#endif

View code on GitHub

NtDoc

No description available.