diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-11-03 16:13:32 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-11-03 16:13:32 +0200 |
commit | 324fd9d10592fcf514e0d3cbd8c361865eca4a11 (patch) | |
tree | 7dcebf6bf71779c294ab2fb1a1237abb2da54ce1 /src/w32.c | |
parent | 0091398af93f0864fcdbd2b5a93aa470450f7612 (diff) | |
download | emacs-324fd9d10592fcf514e0d3cbd8c361865eca4a11.tar.gz emacs-324fd9d10592fcf514e0d3cbd8c361865eca4a11.tar.bz2 emacs-324fd9d10592fcf514e0d3cbd8c361865eca4a11.zip |
A better fix for bug#51583
* src/w32.c (w32_get_resource): Move from here...
* src/w32fns.c (w32_get_resource): ...to here.
(w32_applytheme): No longer a no-op for Cygwin w32 builds.
(globals_of_w32fns): Do attempt to load dwmapi.dll and uxtheme.dll
in the Cygwin w32 build.
Diffstat (limited to 'src/w32.c')
-rw-r--r-- | src/w32.c | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/w32.c b/src/w32.c index 369e7ee4e1f..e4b7ef3b95d 100644 --- a/src/w32.c +++ b/src/w32.c @@ -2820,60 +2820,6 @@ sys_putenv (char *str) #define REG_ROOT "SOFTWARE\\GNU\\Emacs" -/* Query a value from the Windows Registry (under HKCU and HKLM), - where `key` is the registry key, `name` is the name, and `lpdwtype` - is a pointer to the return value's type. `lpwdtype` can be NULL if - you do not care about the type. - - Returns: pointer to the value, or null pointer if the key/name does - not exist. */ -LPBYTE -w32_get_resource (const char *key, const char *name, LPDWORD lpdwtype) -{ - LPBYTE lpvalue; - HKEY hrootkey = NULL; - DWORD cbData; - - /* Check both the current user and the local machine to see if - we have any resources. */ - - if (RegOpenKeyEx (HKEY_CURRENT_USER, key, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS) - { - lpvalue = NULL; - - if (RegQueryValueEx (hrootkey, name, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS - && (lpvalue = xmalloc (cbData)) != NULL - && RegQueryValueEx (hrootkey, name, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS) - { - RegCloseKey (hrootkey); - return (lpvalue); - } - - xfree (lpvalue); - - RegCloseKey (hrootkey); - } - - if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, key, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS) - { - lpvalue = NULL; - - if (RegQueryValueEx (hrootkey, name, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS - && (lpvalue = xmalloc (cbData)) != NULL - && RegQueryValueEx (hrootkey, name, NULL, lpdwtype, lpvalue, &cbData) == ERROR_SUCCESS) - { - RegCloseKey (hrootkey); - return (lpvalue); - } - - xfree (lpvalue); - - RegCloseKey (hrootkey); - } - - return (NULL); -} - /* The argv[] array holds ANSI-encoded strings, and so this function works with ANS_encoded strings. */ void |