mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08:00
b18cb86be7
* autoload.cc: Enable autoloading advapi32 functions. * environ.cc (regopt): Use wide char arguments in reg_key functions. * fhandler_console.cc (beep): Ditto. Use WCHAR throughout. * registry.cc (reg_key): Rewrite reg_key class to use native NT registry functions. Use WCHAR string parameters throughout. Use PCWSTR rather than const WCHAR. Drop multibyte char functionality. Drop unused methods. (get_registry_hive_path): Use RtlQueryRegistryValues to fetch path from registry. (load_registry_hive): Drop useless check for user hive being available. Load hive using NtLoadKey. * registry.h: Accommodate above changes. * sched.cc (sched_rr_get_interval): Use wide char arguments in reg_key functions. * shared.cc (init_installation_root): Ditto. (shared_info::init_obcaseinsensitive): Use RtlQueryRegistryValues to fetch obcaseinsensitive value. (shared_info::heap_slop_size): Use wide char arguments in reg_key functions. (shared_info::heap_chunk_size): Ditto. * syscalls.cc (gethostid): Ditto. * winsup.h (__WIDE): Define. (_WIDE): Define. * libc/minires-os-if.c (get_registry_dns_items): Don't fetch values from registry. Just extract them from given UNICODE_STRING parameter. (get_registry_dns): Fetch all registry values at once using RtlQueryRegistryValues.
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
/* registry.h: shared info for cygwin
|
|
|
|
Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
|
|
2010, 2011 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
class reg_key
|
|
{
|
|
private:
|
|
|
|
HANDLE key;
|
|
NTSTATUS key_is_invalid;
|
|
DWORD _disposition;
|
|
|
|
public:
|
|
|
|
reg_key (HKEY toplev, REGSAM access, ...);
|
|
reg_key (bool isHKLM, REGSAM access, ...);
|
|
|
|
void *operator new (size_t, void *p) {return p;}
|
|
void build_reg (HKEY key, REGSAM access, va_list av);
|
|
|
|
int error () {return key == NULL;}
|
|
|
|
int get_int (PCWSTR, int);
|
|
int get_string (PCWSTR, PWCHAR, size_t, PCWSTR);
|
|
|
|
int set_int (PCWSTR, int);
|
|
int set_string (PCWSTR, PCWSTR);
|
|
|
|
bool created () const {return _disposition & REG_CREATED_NEW_KEY;}
|
|
|
|
~reg_key ();
|
|
};
|
|
|
|
/* Evaluates path to the directory of the local user registry hive */
|
|
PWCHAR __stdcall get_registry_hive_path (PCWSTR name, PWCHAR path);
|
|
void __stdcall load_registry_hive (PCWSTR name);
|