From e81e9e8280761353922fc92110d70e953a562b5b Mon Sep 17 00:00:00 2001 From: "dp%netscape.com" Date: Tue, 8 Feb 2000 21:49:40 +0000 Subject: [PATCH] Bug 26937 Added ApplicationRegistry. r=dveditz git-svn-id: svn://10.0.0.236/trunk@60155 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/libreg/xpcom/nsIRegistry.idl | 7 ++++++- mozilla/xpcom/components/nsIRegistry.idl | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/mozilla/modules/libreg/xpcom/nsIRegistry.idl b/mozilla/modules/libreg/xpcom/nsIRegistry.idl index 0813b21b394..051b56315c0 100644 --- a/mozilla/modules/libreg/xpcom/nsIRegistry.idl +++ b/mozilla/modules/libreg/xpcom/nsIRegistry.idl @@ -28,11 +28,16 @@ interface nsIRegistry : nsISupports const long Users = 1; const long Common = 2; const long CurrentUser = 3; - + const long ApplicationComponentRegistry = 1; + const long ApplicationRegistry = 2; + + // Dont use this one. This for internal use only. + const long ApplicationCustomRegistry = -1; void open(in string regFile); void openWellKnownRegistry(in long regid); + // Deprecated void openDefault(); void close(); void flush(); diff --git a/mozilla/xpcom/components/nsIRegistry.idl b/mozilla/xpcom/components/nsIRegistry.idl index 0813b21b394..051b56315c0 100644 --- a/mozilla/xpcom/components/nsIRegistry.idl +++ b/mozilla/xpcom/components/nsIRegistry.idl @@ -28,11 +28,16 @@ interface nsIRegistry : nsISupports const long Users = 1; const long Common = 2; const long CurrentUser = 3; - + const long ApplicationComponentRegistry = 1; + const long ApplicationRegistry = 2; + + // Dont use this one. This for internal use only. + const long ApplicationCustomRegistry = -1; void open(in string regFile); void openWellKnownRegistry(in long regid); + // Deprecated void openDefault(); void close(); void flush();