From 77c3d463c88af9f41f5f76446d380c80262ce712 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 3 Jun 2005 20:44:46 +0000 Subject: r7248: Remove enum that is causing trouble on AIX (This used to be commit 512536c9165eb4a630c8bf4e43e71def26006047) --- source4/include/registry.h | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'source4/include') diff --git a/source4/include/registry.h b/source4/include/registry.h index 05bcf76ad5..488d4f4dc6 100644 --- a/source4/include/registry.h +++ b/source4/include/registry.h @@ -23,17 +23,15 @@ #define _REGISTRY_H /* Handles for the predefined keys */ -enum reg_predefined_key { - HKEY_CLASSES_ROOT = 0x80000000, - HKEY_CURRENT_USER = 0x80000001, - HKEY_LOCAL_MACHINE = 0x80000002, - HKEY_USERS = 0x80000003, - HKEY_PERFORMANCE_DATA = 0x80000004, - HKEY_CURRENT_CONFIG = 0x80000005, - HKEY_DYN_DATA = 0x80000006, - HKEY_PERFORMANCE_TEXT = 0x80000050, - HKEY_PERFORMANCE_NLSTEXT= 0x80000060 -}; +#define HKEY_CLASSES_ROOT 0x80000000 +#define HKEY_CURRENT_USER 0x80000001 +#define HKEY_LOCAL_MACHINE 0x80000002 +#define HKEY_USERS 0x80000003 +#define HKEY_PERFORMANCE_DATA 0x80000004 +#define HKEY_CURRENT_CONFIG 0x80000005 +#define HKEY_DYN_DATA 0x80000006 +#define HKEY_PERFORMANCE_TEXT 0x80000050 +#define HKEY_PERFORMANCE_NLSTEXT 0x80000060 /* Registry data types */ -- cgit