diff options
author | stanton <stanton> | 1999-02-02 22:25:21 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-02-02 22:25:21 (GMT) |
commit | cd1b42525749d0b3a0a5826ff6db23502b786c91 (patch) | |
tree | d46905bf0211750835330827f7a0cfc8eb5f685f /win | |
parent | 287e43ac1008d0ab3b89450792c2902232084d26 (diff) | |
download | tcl-cd1b42525749d0b3a0a5826ff6db23502b786c91.zip tcl-cd1b42525749d0b3a0a5826ff6db23502b786c91.tar.gz tcl-cd1b42525749d0b3a0a5826ff6db23502b786c91.tar.bz2 |
* win/tclWinReg.c:
* doc/registry.n: Added support for HKEY_PERFORMANCE_DATA and
HKEY_DYN_DATA keys. [Bug: 1109]
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinReg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/tclWinReg.c b/win/tclWinReg.c index ea947c2..58d0b61 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinReg.c,v 1.6 1998/09/14 18:40:20 stanton Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.7 1999/02/02 22:25:21 stanton Exp $ */ #include <tcl.h> @@ -61,7 +61,8 @@ static char *rootKeyNames[] = { "HKEY_LOCAL_MACHINE", "HKEY_USERS", "HKEY_CLASSES_ROOT", - "HKEY_CURRENT_USER", "HKEY_CURRENT_CONFIG", NULL + "HKEY_CURRENT_USER", "HKEY_CURRENT_CONFIG", + "HKEY_PERFORMANCE_DATA", "HKEY_DYN_DATA", NULL }; static HKEY rootKeys[] = { |