1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 // WindowsRegistry.h: Schnittstelle für die Klasse WindowsRegistry.
4 //////////////////////////////////////////////////////////////////////
6 #ifndef _WINDOWSREGISTRY_HXX_
7 #define _WINDOWSREGISTRY_HXX_
10 #pragma warning(push, 1) /* disable warnings within system headers */
17 #include "Registry.hxx"
19 /** Basically a factory class
26 RegistryKey
GetClassesRootKey(bool Writeable
= true) const;
28 RegistryKey
GetCurrentUserKey(bool Writeable
= true) const;
30 RegistryKey
GetLocalMachineKey(bool Writeable
= true) const;
32 RegistryKey
GetUserKey(bool Writeable
= true) const;
35 RegistryKey
GetRegistryKey(HKEY RootKey
, bool Writeable
) const;
43 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */