/aoo4110/main/shell/source/win32/shlxthandler/util/ |
H A D | registry.cxx | 57 bool SetRegistryKey(HKEY RootKey, const char* KeyName, const char* ValueName, const char* Value) in SetRegistryKey() argument 63 RootKey, KeyName, 0, "", REG_OPTION_NON_VOLATILE, KEY_WRITE, 0, &hSubKey, 0); in SetRegistryKey() 80 bool DeleteRegistryKey(HKEY RootKey, const char* KeyName) in DeleteRegistryKey() argument 85 RootKey, in DeleteRegistryKey() 122 rc = RegDeleteKeyA(RootKey, KeyName); in DeleteRegistryKey() 142 bool HasSubkeysRegistryKey(HKEY RootKey, const char* KeyName, /* out */ bool& bResult) in HasSubkeysRegistryKey() argument 146 LONG rc = RegOpenKeyExA(RootKey, KeyName, 0, KEY_READ, &hKey); in HasSubkeysRegistryKey() 181 bool QueryRegistryKey(HKEY RootKey, const char* KeyName, const char* ValueName, char *pszData, DWOR… in QueryRegistryKey() argument 186 RootKey, in QueryRegistryKey()
|
/aoo4110/main/setup_native/source/win32/customactions/reg4msdoc/ |
H A D | registrywnt.cxx | 63 RegistryKeyImplWinNT::RegistryKeyImplWinNT(HKEY RootKey, const std::wstring& KeyName) : in RegistryKeyImplWinNT() argument 64 RegistryKeyImpl(RootKey, KeyName) in RegistryKeyImplWinNT() 71 RegistryKeyImplWinNT::RegistryKeyImplWinNT(HKEY RootKey) : in RegistryKeyImplWinNT() argument 72 RegistryKeyImpl(RootKey) in RegistryKeyImplWinNT() 80 RegistryKeyImplWinNT::RegistryKeyImplWinNT(HKEY RootKey, HKEY SubKey, const std::wstring& KeyName, … in RegistryKeyImplWinNT() argument 81 RegistryKeyImpl(RootKey, SubKey, KeyName, Writeable) in RegistryKeyImplWinNT() 485 LONG RegistryKeyImplWinNT::ImplDeleteSubKeyTree(HKEY RootKey, const std::wstring& Name) in ImplDeleteSubKeyTree() argument 492 RootKey, in ImplDeleteSubKeyTree() 526 rc = RegDeleteKeyW(RootKey, Name.c_str()); in ImplDeleteSubKeyTree()
|
H A D | registry.cxx | 41 RegistryKeyImpl::RegistryKeyImpl(HKEY RootKey, const std::wstring& KeyName) : in RegistryKeyImpl() argument 42 m_hRootKey(RootKey), in RegistryKeyImpl() 56 RegistryKeyImpl::RegistryKeyImpl(HKEY RootKey) : in RegistryKeyImpl() argument 57 m_hRootKey(RootKey), in RegistryKeyImpl() 67 RegistryKeyImpl::RegistryKeyImpl(HKEY RootKey, HKEY SubKey, const std::wstring& KeyName, bool Write… in RegistryKeyImpl() argument 68 m_hRootKey(RootKey), in RegistryKeyImpl()
|
H A D | registryw9x.cxx | 58 RegistryKeyImplWin9x::RegistryKeyImplWin9x(HKEY RootKey, const std::wstring& KeyName) : in RegistryKeyImplWin9x() argument 59 RegistryKeyImpl(RootKey, KeyName) in RegistryKeyImplWin9x() 66 RegistryKeyImplWin9x::RegistryKeyImplWin9x(HKEY RootKey) : in RegistryKeyImplWin9x() argument 67 RegistryKeyImpl(RootKey) in RegistryKeyImplWin9x() 75 RegistryKeyImplWin9x::RegistryKeyImplWin9x(HKEY RootKey, HKEY SubKey, const std::wstring& KeyName, … in RegistryKeyImplWin9x() argument 76 RegistryKeyImpl(RootKey, SubKey, KeyName, Writeable) in RegistryKeyImplWin9x()
|
H A D | registrywnt.hxx | 167 RegistryKeyImplWinNT(HKEY RootKey, const std::wstring& KeyName); 175 RegistryKeyImplWinNT(HKEY RootKey); 180 …RegistryKeyImplWinNT(HKEY RootKey, HKEY SubKey, const std::wstring& KeyName, bool Writeable = true… 184 LONG ImplDeleteSubKeyTree(HKEY RootKey, const std::wstring& Name);
|
H A D | windowsregistry.cxx | 88 RegistryKey WindowsRegistry::GetRegistryKey(HKEY RootKey, bool Writeable) const in GetRegistryKey() argument 93 regkey = RegistryKey(new RegistryKeyImplWinNT(RootKey)); in GetRegistryKey() 95 regkey = RegistryKey(new RegistryKeyImplWin9x(RootKey)); in GetRegistryKey()
|
H A D | registryw9x.hxx | 168 RegistryKeyImplWin9x(HKEY RootKey, const std::wstring& KeyName); 176 RegistryKeyImplWin9x(HKEY RootKey); 181 …RegistryKeyImplWin9x(HKEY RootKey, HKEY SubKey, const std::wstring& KeyName, bool Writeable = true…
|
H A D | registry.hxx | 291 RegistryKeyImpl(HKEY RootKey, const std::wstring& KeyName); 302 RegistryKeyImpl(HKEY RootKey); 307 RegistryKeyImpl(HKEY RootKey, HKEY SubKey, const std::wstring& KeyName, bool Writeable = true);
|
H A D | windowsregistry.hxx | 55 RegistryKey GetRegistryKey(HKEY RootKey, bool Writeable) const;
|
/aoo4110/main/shell/inc/internal/ |
H A D | registry.hxx | 44 bool SetRegistryKey(HKEY RootKey, const char* KeyName, const char* ValueName, const char* Value); 49 bool DeleteRegistryKey(HKEY RootKey, const char* KeyName); 54 bool HasSubkeysRegistryKey(HKEY RootKey, const char* KeyName, bool& bResult); 62 bool QueryRegistryKey(HKEY RootKey, const char* KeyName, const char* ValueName, char *pszData, DWOR…
|
/aoo4110/main/setup_native/source/win32/customactions/reg64/ |
H A D | reg64.cxx | 251 bool DeleteRegistryKey(HKEY RootKey, const wchar_t* KeyName) in DeleteRegistryKey() argument 254 RootKey, KeyName, KEY_WOW64_64KEY, 0); in DeleteRegistryKey() 266 bool SetRegistryKey(HKEY RootKey, const wchar_t* KeyName, const wchar_t* ValueName, const wchar_t* … in SetRegistryKey() argument 272 RootKey, KeyName, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE | KEY_WOW64_64KEY, 0, &hSubKey, 0); in SetRegistryKey()
|
/aoo4110/main/setup_native/source/win32/customactions/reg4allmsdoc/ |
H A D | reg4allmsi.cxx | 169 static LONG DeleteSubKeyTree( HKEY RootKey, LPCSTR lpKey ) in DeleteSubKeyTree() argument 172 LONG rc = RegOpenKeyExA( RootKey, lpKey, 0, KEY_READ | DELETE, &hKey ); in DeleteSubKeyTree() 190 rc = RegDeleteKeyA( RootKey, lpKey ); in DeleteSubKeyTree()
|