1 /* Emulate the X Resource Manager through the registry.
2 Copyright (C) 1990, 1993, 1994 Free Software Foundation.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Written by Kevin Gallo */
26 #include "blockinput.h"
31 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
34 w32_get_string_resource (name
, class, dwexptype
)
38 LPBYTE lpvalue
= NULL
;
46 /* Check both the current user and the local machine to see if we have any resources */
48 if (RegOpenKeyEx (HKEY_CURRENT_USER
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
49 || RegOpenKeyEx (HKEY_LOCAL_MACHINE
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
53 if (RegQueryValueEx (hrootkey
, name
, NULL
, &dwType
, NULL
, &cbData
) == ERROR_SUCCESS
54 && dwType
== dwexptype
)
58 else if (RegQueryValueEx (hrootkey
, class, NULL
, &dwType
, NULL
, &cbData
) == ERROR_SUCCESS
59 && dwType
== dwexptype
)
69 && (lpvalue
= (LPBYTE
) xmalloc (cbData
)) != NULL
70 && RegQueryValueEx (hrootkey
, keyname
, NULL
, NULL
, lpvalue
, &cbData
) == ERROR_SUCCESS
);
72 RegCloseKey (hrootkey
);
79 if (lpvalue
) xfree (lpvalue
);
88 /* Retrieve the string resource specified by NAME with CLASS from
92 x_get_string_resource (rdb
, name
, class)
96 return (w32_get_string_resource (name
, class, REG_SZ
));