From 6cf13f4d72beee3df0432d0898c5981ce8bced43 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 11 Dec 2004 17:12:16 +0000 Subject: r4154: Add definitions for HKEY_PERFORMANCE_TEXT and HKEY_PERFORMANCE_NLSTEXT Hives and predefined keys (HKEY_*) are not necessarily the same thing. (This used to be commit 217e4e5841cfedb2b18dce3f89dd88ea4a36fe8f) --- source4/include/registry.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4/include') diff --git a/source4/include/registry.h b/source4/include/registry.h index b399869091..e3b7eeb902 100644 --- a/source4/include/registry.h +++ b/source4/include/registry.h @@ -22,8 +22,8 @@ #ifndef _REGISTRY_H /* _REGISTRY_H */ #define _REGISTRY_H - -enum hkeys { +/* Handles for the predefined keys */ +enum reg_predefined_key { HKEY_CLASSES_ROOT = 0x80000000, HKEY_CURRENT_USER = 0x80000001, HKEY_LOCAL_MACHINE = 0x80000002, @@ -31,8 +31,8 @@ enum hkeys { HKEY_PERFORMANCE_DATA = 0x80000004, HKEY_CURRENT_CONFIG = 0x80000005, HKEY_DYN_DATA = 0x80000006, - HKEY_PT = 0x80000007, /* Don't know if this is correct! */ - HKEY_PN = 0x80000008 /* Don't know if this is correct! */ + HKEY_PERFORMANCE_TEXT = 0x80000050, + HKEY_PERFORMANCE_NLSTEXT= 0x80000060 }; /* Registry data types */ -- cgit