commit | db9353e17dc375dda1a4910c70461dc745894834 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon May 05 22:17:45 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon May 05 22:17:45 1997 +0000 |
tree | c44a1ec7b17f6ed7ba09500892b23bd5e6d4f30b | |
parent | fdf95dd525840559d77637802ff117969db19031 [diff] |
CloseHandle should be RegCloseKey. Add extern decl for Py_GetProgramName().
diff --git a/PC/getpath_nt.c b/PC/getpath_nt.c index 2de74f1..189fc27 100644 --- a/PC/getpath_nt.c +++ b/PC/getpath_nt.c
@@ -112,7 +112,7 @@ } if (newKey) - CloseHandle(newKey); + RegCloseKey(newKey); return retval; } /* Return the initial python search path. This is called once from @@ -129,6 +129,7 @@ static char *buf = NULL; char *p; int n; + extern char *Py_GetProgramName(); if (buf != NULL) { free(buf);