Mercurial > emacs
annotate src/w32reg.c @ 15013:aad88afa6a0c libc-960413 libc-960414 libc-960415 libc-960416 libc-960417 libc-960418 libc-960419 libc-960420 libc-960421 libc-960422 libc-960423 libc-960424 libc-960425 libc-960426 libc-960427 libc-960428 libc-960429 libc-960430 libc-960501 libc-960502 libc-960503 libc-960504 libc-960505 libc-960506 libc-960507 libc-960508 libc-960509 libc-960510 libc-960511 libc-960512 libc-960513 libc-960514 libc-960515 libc-960516 libc-960517 libc-960518 libc-960519 libc-960520
* config.guess: Combine two OSF1 rules.
Also recognize field test versions. From mjr@zk3.dec.com.
* config.guess (dgux): Use /usr/bin/uname rather than uname,
because GNU uname does not support -p. From pmr@pajato.com.
author | Per Bothner <bothner@cygnus.com> |
---|---|
date | Sat, 13 Apr 1996 00:06:54 +0000 |
parents | d0d8d9d73f7f |
children | 685510b93c83 |
rev | line source |
---|---|
13434 | 1 /* Emulate the X Resource Manager through the registry. |
2 Copyright (C) 1990, 1993, 1994 Free Software Foundation. | |
3 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
4 This file is part of GNU Emacs. |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
5 |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
6 GNU Emacs is free software; you can redistribute it and/or modify |
13434 | 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) | |
9 any later version. | |
10 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
11 GNU Emacs is distributed in the hope that it will be useful, |
13434 | 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. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
17 along with GNU Emacs; see the file COPYING. If not, write to |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
13434 | 20 |
21 /* Written by Kevin Gallo */ | |
22 | |
23 #include <config.h> | |
24 #include "lisp.h" | |
25 #include "w32term.h" | |
26 #include "blockinput.h" | |
27 | |
28 #include <stdio.h> | |
29 #include <string.h> | |
30 | |
14353 | 31 #define REG_ROOT "SOFTWARE\\GNU\\Emacs\\" |
13434 | 32 |
33 LPBYTE | |
34 win32_get_string_resource (name, class, dwexptype) | |
35 char *name, *class; | |
36 DWORD dwexptype; | |
37 { | |
38 LPBYTE lpvalue = NULL; | |
39 HKEY hrootkey = NULL; | |
40 DWORD dwType; | |
41 DWORD cbData; | |
42 BOOL ok = FALSE; | |
43 | |
44 BLOCK_INPUT; | |
45 | |
46 /* Check both the current user and the local machine to see if we have any resources */ | |
47 | |
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) | |
50 { | |
51 char *keyname; | |
52 | |
53 if (RegQueryValueEx (hrootkey, name, NULL, &dwType, NULL, &cbData) == ERROR_SUCCESS | |
54 && dwType == dwexptype) | |
55 { | |
56 keyname = name; | |
57 } | |
58 else if (RegQueryValueEx (hrootkey, class, NULL, &dwType, NULL, &cbData) == ERROR_SUCCESS | |
59 && dwType == dwexptype) | |
60 { | |
61 keyname = class; | |
62 } | |
63 else | |
64 { | |
65 keyname = NULL; | |
66 } | |
67 | |
68 ok = (keyname | |
69 && (lpvalue = (LPBYTE) xmalloc (cbData)) != NULL | |
70 && RegQueryValueEx (hrootkey, keyname, NULL, NULL, lpvalue, &cbData) == ERROR_SUCCESS); | |
71 | |
72 RegCloseKey (hrootkey); | |
73 } | |
74 | |
75 UNBLOCK_INPUT; | |
76 | |
77 if (!ok) | |
78 { | |
79 if (lpvalue) xfree (lpvalue); | |
80 return (NULL); | |
81 } | |
82 else | |
83 { | |
84 return (lpvalue); | |
85 } | |
86 } | |
87 | |
88 /* Retrieve the string resource specified by NAME with CLASS from | |
89 database RDB. */ | |
90 | |
91 char * | |
92 x_get_string_resource (rdb, name, class) | |
93 int rdb; | |
94 char *name, *class; | |
95 { | |
96 return (win32_get_string_resource (name, class, REG_SZ)); | |
97 } |